# Tool Cli

> easy package manager for mcp servers ⏵ create, discover, share, and run mcp packages ⏵ build code-mode agents with tool-cli ⏵ turn your mcps into clis

- **Type:** MCP server
- **Install:** `agentstack add mcp-superradcompany-tool-cli`
- **Verified:** Pending review
- **Seller:** [superradcompany](https://agentstack.voostack.com/s/superradcompany)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** Apache-2.0
- **Upstream author:** [superradcompany](https://github.com/superradcompany)
- **Source:** https://github.com/superradcompany/tool-cli
- **Website:** https://tool.store

## Install

```sh
agentstack add mcp-superradcompany-tool-cli
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

[ tool-cli ]
  ———&nbsp;&nbsp;&nbsp;The Missing Package Manager for MCP Tools&nbsp;&nbsp;&nbsp;———

> [MCP](https://github.com/modelcontextprotocol) solved how AI agents integrate with other systems. [MCPB](https://github.com/modelcontextprotocol/mcpb) solved how users install them. But if you're building MCP tools, you're still copying JSON configs, wrestling with dependencies, and manually testing against clients.
>
> `tool-cli` is the missing piece. It handles the entire lifecycle from scaffolding to publishing, so you can focus on building your tool.

  

  
    
  
  
    
  

-  &nbsp;**Growing marketplace:** discover and install MCPs from [tool.store](https://tool.store)
-  &nbsp;**Works with your stack:** Claude Code, Cursor, OpenCode, VS Code, and more
-  &nbsp;**Ship your own MCP:** create your own MCP server interactively with `tool init`
-  &nbsp;**Unified proxy:** run all your MCPs through a single `tool run` interface
-  &nbsp;**MCPs as CLIs:** invoke any tool directly from your terminal with `tool call`
-  &nbsp;**Configure once:** set it up once, use it everywhere
-  &nbsp;**Built for both humans and agents:** clean output that works in terminals and AI workflows
-  &nbsp;**Encrypted by default:** API keys and secrets are encrypted at rest
-  &nbsp;**OAuth just works:** browser flow, token refresh, secure storage handled for you
-  &nbsp;**Fully local:** your API keys and tokens never leave your machine
-  &nbsp;**Session support:** keep stdio servers alive and target them with multiple calls *(coming soon)*
-  &nbsp;**Sandboxed execution:** run tools in isolated environments *(coming soon)*

• • •

## Install

> macOS / Linux:
>
> ```sh
> curl -fsSL https://cli.tool.store | sh
> ```
>
> Windows:
>
> ```powershell
> irm https://cli.tool.store/windows | iex
> ```
>
> Or with Cargo (any platform):
>
> ```sh
> cargo install --git https://github.com/zerocore-ai/tool-cli --locked
> ```

## Quick Start

Get your first MCP tool published in three steps.

1&nbsp;&nbsp;⏵&nbsp;&nbsp;Create

> ```sh
> tool init my-tool
> ```
>
> This gives you a working MCP server with a valid `manifest.json`. Just follow the prompts to pick your language and transport.
>
> For bundled packages, you need to run build.
>
> ```sh
> tool build my-tool
> ```
>
> 
> Already have an MCP server?
> 
> Run `tool detect` in your project to see what tool-cli finds. Then `tool init` will generate a manifest from your existing code.
>
> ```sh
> tool detect my-tool      # shows detected type, transport, entry point
> ```
>
> ```sh
> tool init my-tool        # generates manifest.json
> ```
>
> 
> 

##

2&nbsp;&nbsp;⏵&nbsp;&nbsp;Test

> ```sh
> tool info my-tool
> ```
>
> Shows you what your server exposes. Tools, prompts, resources. This is what clients will see when they connect.
>
> ```sh
> tool call my-tool -m hello -p name="Steve"
> ```
>
> You can call any method directly. No client needed.
>
> 
> Method shorthand
> 
> MCP tools often use `toolname__method` naming. You can use `.` as shorthand.
>
> ```sh
> tool call bash -m .exec -p command="ls -la"  # expands to bash__exec
> ```
>
> ```sh
> tool call files -m .fs.read -p path="/tmp"   # expands to files__fs__read
> ```
>
> 
> 
>
> ```sh
> tool run my-tool
> ```
>
> Starts the mcp server for connection.

##

3&nbsp;&nbsp;⏵&nbsp;&nbsp;Share

> ```sh
> tool login
> ```
>
> ```sh
> tool publish my-tool
> ```
>
> Log in once, then publish. Now anyone can install your tool.
>
> 
> Have native binaries or platform-specific deps?
> 
>
> Use multi-platform publishing to create separate bundles for each OS/architecture:
>
> ```sh
> tool publish my-tool --multi-platform
> ```
>
> See [Multi-Platform Bundles](#multi-platform-bundles) for details.
>
> 
> 

• • •

## Using Tools

`tool-cli` essentially turns your MCP servers into CLIs. You can inspect, call, and compose tools directly from the terminal. It is the foundation for building [code-mode agents](cookbooks/).

### Find Tools

> ```sh
> tool search filesystem
> ```
>
> Search the registry for tools. You'll see names, descriptions, and download counts.
>
> ```sh
> tool grep "file"
> ```
>
> Search across all installed tools - server names, tool names, descriptions, and schema fields.

##

### Preview Tools

> ```sh
> tool preview library/open-data
> ```
>
> Inspect a tool from the registry without installing it. See its available methods before you commit.
>
> ```sh
> tool preview library/bash -m exec
> ```
>
> Preview a specific method to see its input and output schemas.

##

### Install Tools

> ```sh
> tool install library/bash
> ```
>
> Installs a tool from the registry. You can also install from a local path.
>
> ```sh
> tool list
> ```
>
> See what you have installed.

##

### Run Tools

> ```sh
> tool run library/bash
> ```
>
> Starts the tool with its native transport. Connect your MCP client to it.
>
> You can also use `--expose` to bridge between transports.
>
> ```sh
> tool run  --expose stdio # HTTP backend to stdio
> ```
>
> ```sh
> tool run  --expose http --port 3000 # stdio backend to HTTP
> ```

##

### Configure Tools

> ```sh
> tool config set library/terminal
> ```
>
> Some tools need configuration like API keys. This walks you through setting them up interactively. You can also pass values directly with `tool config set library/terminal KEY=VALUE`.
>
> ```sh
> tool config get library/terminal
> ```
>
> Check what config values are set.
>
> ```sh
> tool config list
> ```
>
> See all tools that have saved configuration.
>
> ```sh
> tool config unset library/terminal
> ```
>
> Remove config and credentials for a tool, or use `--all` for all tools.

##

### Use Tools

> ```sh
> tool info library/bash
> ```
>
> See what a tool exposes. Tools, prompts, resources.
>
> ```sh
> tool call library/bash -m exec -p command="echo hello"
> ```
>
> Call a method directly. Great for testing things out.

• • •

## Host Integration

Once you've installed some tools, you probably want to use them in your favorite AI app. Instead of manually editing JSON configs, just run:

> ```sh
> tool host add claude-desktop library/open-data
> ```
>
> This registers the tool with the host. Works with Claude Desktop, Cursor, VS Code, Claude Code, Codex, Windsurf, Zed, Gemini CLI, Kiro, Roo Code, and OpenCode.

claude-code

opencode

codex

cursor

vscode

claude-desktop

windsurf

zed

gemini-cli

kiro

roo-code

> ```sh
> tool host list                             # see all supported hosts
> tool host add cursor library/open-data     # add a tool to Cursor
> tool host add vscode                       # add all installed tools
> tool host remove claude-desktop            # remove tools from a host
> tool host show cursor                      # preview the generated config
> ```
>
> You can specify individual tools or omit them to register all installed tools. The command creates backups before modifying anything, so your original config is safe.

• • •

## Multi-Platform Bundles

Most MCP tools are pure JavaScript or Python and work everywhere with a single bundle. But if your tool has **platform-specific dependencies**, you need multi-platform publishing:

- **Native binaries** (Rust, Go, C++)
- **Node.js with native addons** (better-sqlite3, sharp, etc.)
- **Python with compiled extensions** (numpy, pandas, etc.)

Multi-platform creates separate bundles for each OS/architecture. Users automatically get the right one. Learn more about [multi-platform packaging](https://tool.store/docs/advanced/multi-platform).

> Reference-mode `.mcpbx` bundles that point to remote servers or external commands like `npx` and `uvx` don't need multi-platform publishing since they don't bundle any code.

### Publishing

> ```sh
> tool publish --multi-platform \
>   --darwin-arm64 ./dist/my-tool-darwin-arm64.mcpb \
>   --darwin-x64 ./dist/my-tool-darwin-x64.mcpb \
>   --linux-arm64 ./dist/my-tool-linux-arm64.mcpb \
>   --linux-x64 ./dist/my-tool-linux-x64.mcpb \
>   --win32-arm64 ./dist/my-tool-win32-arm64.mcpb \
>   --win32-x64 ./dist/my-tool-win32-x64.mcpb
> ```
>
> Specify the bundle for each platform. Typically done in CI after building on each runner.
>
> #### GitHub Actions
>
> Use [zerocore-ai/tool-action](https://github.com/zerocore-ai/tool-action) to automate multi-platform builds:
>
> ```yaml
> - uses: zerocore-ai/tool-action/setup@v1
> - uses: zerocore-ai/tool-action/pack@v1
>   with:
>     target: ${{ matrix.target }}
> ```
>
> 
> Auto-detect from manifest
> 
>
> If all platform binaries are available locally, this packs and uploads all variants defined in your manifest's `platform_overrides`:
>
> ```sh
> tool publish --multi-platform
> ```
>
> 
> 

##

### Installing with Platform Selection

> ```sh
> tool install library/bash
> ```
>
> Automatically downloads the bundle matching your system (e.g., `darwin-arm64` on Apple Silicon).

• • •

## Commands

| Command     | What it does                                                |
| ----------- | ----------------------------------------------------------- |
| `init`      | Create a new tool or convert an existing MCP server to MCPB |
| `detect`    | Scan a project and show what tool-cli finds                 |
| `validate`  | Check your manifest for errors                              |
| `info`      | Show what a tool exposes                                    |
| `preview`   | Preview a registry tool without installing                  |
| `call`      | Call a tool method directly                                 |
| `run`       | Start a tool as a server                                    |
| `pack`      | Bundle into `.mcpb`/`.mcpbx` (supports multi-platform)      |
| `publish`   | Upload to the registry (supports multi-platform)            |
| `install`   | Install a tool (auto-detects platform)                      |
| `download`  | Download a bundle without installing                        |
| `uninstall` | Remove an installed tool                                    |
| `list`      | Show installed tools                                        |
| `search`    | Find tools in the registry                                  |
| `grep`      | Search tool schemas by pattern                              |
| `config`    | Manage tool configuration                                   |
| `host`      | Register tools with MCP hosts                               |
| `login`     | Log in to the registry                                      |
| `logout`    | Log out from the registry                                   |
| `whoami`    | Show current authentication status                          |
| `self`      | Manage tool-cli itself (update, uninstall)                  |

Check out the [CLI docs](https://tool.store/docs/cli) for the full details.

• • •

## The MCPB Extension

[MCPB](https://github.com/modelcontextprotocol/mcpb) is great for what it was designed for: bundled servers that run locally over stdio. But most MCP servers today run via `npx` or `uvx` (nothing to bundle), some are remote HTTP servers (no local code at all), and some need things like host-managed ports or OAuth flows that the spec doesn't cover.

We created [MCPBX](https://tool.store/docs/building-tools/mcpbx) (`.mcpbx`) to fill those gaps. It's a superset of MCPB that adds HTTP transport, reference mode (so you can point to `npx`/`uvx` or a remote URL instead of bundling code), system config for host-managed resources, OAuth config, and template functions for constructing auth headers.

The separate file extension exists so hosts know upfront whether they can handle the manifest. `tool-cli` picks the right format automatically based on what your manifest uses.

• • •

## Why This Exists

MCP is becoming the standard for AI tool integration. But standards only matter if people can actually use them.

Anthropic's MCPB format solved the installation problem. Users can install MCP tools with one click now. But developers still need to create those packages. They need to validate manifests, bundle dependencies, test locally, and publish somewhere discoverable.

tool-cli is that toolchain. And tool.store is that registry.

The goal is simple. Make building and sharing MCP tools as easy as publishing an npm package.

     BUILD CONTEXT-EFFICIENT AI AGENTS WITH TOOL-CLI →

• • •

## Licensing

`tool-cli` is licensed under the [Apache 2.0 License](LICENSE).

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [superradcompany](https://github.com/superradcompany)
- **Source:** [superradcompany/tool-cli](https://github.com/superradcompany/tool-cli)
- **License:** Apache-2.0
- **Homepage:** https://tool.store

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** yes
- **Filesystem access:** yes
- **Shell / process execution:** no
- **Environment & secrets:** no
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: flagged — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-superradcompany-tool-cli
- Seller: https://agentstack.voostack.com/s/superradcompany
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
