Generic HTTP Client
For any MCP-compatible client using HTTP transport, configure it with these settings:
| Setting | Value |
|---|---|
| URL | https://mcp-au.spotto.ai/mcp (or your regional full endpoint) |
| Method | POST |
| Content-Type | application/json |
| Authentication | X-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
}