Stats
Links
Categories
npx claudepluginhub paulbellamy/mcpConnect to and use external MCP tool servers via the mcp CLI
A CLI tool for discovering and calling tools on external MCP (Model Context Protocol) servers.
claude plugin marketplace add https://github.com/paulbellamy/mcp
claude plugin install mcp-cli
curl -fsSL https://raw.githubusercontent.com/paulbellamy/mcp/master/scripts/install.sh | sh
go install github.com/paulbellamy/mcp@latest
# List configured servers
mcp servers
# Add a server (HTTP or stdio)
mcp add <name> <url>
mcp add <name> --stdio <command> [args...]
# Discover tools
mcp tools [server] [--query "search term"] [--refresh]
# Call a tool
mcp call <server> <tool> --params '{"key": "value"}'
# Stream progress for long-running tools
mcp call <server> <tool> --stream --params '{"key": "value"}'
# Authenticate
mcp auth <name> --callback-url <url>
# Use a server without adding it (pass URL directly)
mcp tools https://api.example.com/mcp
mcp call https://api.example.com/mcp <tool> --params '{"key": "value"}'
mcp ping https://api.example.com/mcp
# Authenticate with a token for ad-hoc URLs
MCP_AUTH_TOKEN=<token> mcp call https://api.example.com/mcp <tool> --params '{}'
# Ping / remove
mcp ping <server>
mcp remove <name>
MIT