Claude Desktop

Installation

The easiest way to install and configure Kirha MCP Gateway for Claude Desktop is using our CLI tool:

# Install for Claude Desktop
npx @kirha/mcp-installer install --client claude --vertical crypto --key your-api-key-here

# Install with plan mode enabled
# Plan mode includes two-step validation, letting you review and approve the data providers and pricing before each prompt runs.
# You can always deactive it later in your Claude configuration file.
npx @kirha/mcp-installer install --client claude --vertical crypto --key your-api-key-here --enable-plan-mode

For more details and advanced usage, see the MCP Installer documentation.

Option 2: Manual Configuration

If you prefer to configure Claude Desktop manually, add this to your claude_desktop_config.json file:

Configuration File Locations

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
  • Linux: ~/.config/Claude/claude_desktop_config.json

Configuration

{
  "mcpServers": {
    "kirha-crypto": {
      "command": "npx",
      "args": [
        "-y",
        "@kirha/mcp-gateway"
      ],
      "env": {
        "KIRHA_API_KEY": "your-api-key-here",
        "TOOL_PLAN_MODE_ENABLED": "false",
        "VERTICAL_ID": "crypto"
      }
    }
  }
}

Important: Replace your-api-key-here with your actual Kirha API key.