# Show the help menusmithery --help# Authenticate with Smitherysmithery auth login# Search for MCP serverssmithery mcp search "github"# Add an MCP server to a local client (e.g., Claude Desktop)smithery mcp add exa --client claude# Add an MCP server as a remote Smithery connectionsmithery mcp add https://server.smithery.ai/exa --id exa# List tools from your connected MCP serverssmithery tool list# Call a toolsmithery tool call exa search '{"query": "latest news about MCP"}'# Search and add skillssmithery skill search "code review"smithery skill add anthropics/frontend-design --agent claude-code
Interact with tools from MCP servers connected via smithery mcp.
smithery tool list [connection] # List tools from your connected MCP serverssmithery tool find [query] # Search tools by name or intentsmithery tool get <connection> <tool> # Show full details for one toolsmithery tool call <connection> <tool> [args] # Call a tool
# Add an MCP server to Claude Desktopsmithery mcp add mcp-obsidian --client claude# Add with pre-configured data (skips prompts)smithery mcp add mcp-obsidian --client claude --config '{"vaultPath":"path/to/vault"}'# Remove a server from a clientsmithery mcp remove mcp-obsidian --client claude# Search for MCP servers with JSON outputsmithery --json mcp search "database"# List tools from a specific connectionsmithery tool list my-github# Find tools by intentsmithery tool find "create issue"# Call a tool with JSON argumentssmithery tool call my-github create_issue '{"title":"Bug fix","body":"..."}'# Login and check authsmithery auth loginsmithery auth whoami# Publish your MCP serversmithery mcp publish "https://my-server.com" -n myorg/my-server# Publish an MCPB bundlesmithery mcp publish ./server.mcpb -n myorg/my-server# Show helpsmithery --help