Skip to main content

Generic HTTP Client

For any MCP-compatible client using HTTP transport, configure it with these settings:

SettingValue
URLhttps://mcp-au.spotto.ai/mcp (or your regional full endpoint)
MethodPOST
Content-Typeapplication/json
AuthenticationX-API-Key: YOUR_API_KEY or Authorization: Bearer YOUR_API_KEY

The server accepts both authentication methods—use whichever your client supports.

If you need the smaller regional read or write profile instead, see MCP Endpoint Profiles.

Request Format

MCP uses JSON-RPC 2.0. A typical request looks like:

{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get-api-status",
"arguments": {}
},
"id": 1
}