Skip to main content

Claude Code CLI

Claude Code is Anthropic's command-line interface for Claude. Adding an MCP server is straightforward:

claude mcp add spotto --transport http https://mcp-au.spotto.ai/mcp --header "X-API-Key: YOUR_API_KEY"

Replace YOUR_API_KEY with your Spotto API key and adjust the endpoint URL for your region. This example uses the default full endpoint. If you need the regional read or write variant instead, see MCP Endpoint Profiles.

To verify the connection:

claude mcp list

You should see spotto listed with its available tools.

Environment Variables

For better security, you can use an environment variable instead of hardcoding your API key:

export SPOTTO_API_KEY="your_api_key_here"
claude mcp add spotto --transport http https://mcp-au.spotto.ai/mcp --header "X-API-Key: $SPOTTO_API_KEY"