Skip to main content

Claude Desktop

Claude Desktop stores MCP configuration in a JSON file. The location depends on your operating system:

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

Create or edit this file with the following content:

{
"mcpServers": {
"spotto": {
"transport": "http",
"url": "https://mcp-au.spotto.ai/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}

This example uses the default full endpoint. If you need the regional read or write variant, see MCP Endpoint Profiles.

After saving the file, restart Claude Desktop for the changes to take effect.

Adding Multiple Servers

If you already have other MCP servers configured, add Spotto to the existing mcpServers object:

{
"mcpServers": {
"existing-server": {
...
},
"spotto": {
"transport": "http",
"url": "https://mcp-au.spotto.ai/mcp",
"headers": {
"X-API-Key": "YOUR_API_KEY"
}
}
}
}