Endpoint
Send JSON-RPC requests to this URL:
POST https://smartapis.net/mcp
MCP
Browsers opening /mcp should see guidance, not a raw RPC error.
SmartAPIs.net serves MCP for agent tooling through JSON-RPC requests sent to this same
path with POST.
Send JSON-RPC requests to this URL:
POST https://smartapis.net/mcp
{
"jsonrpc": "2.0",
"id": 1,
"method": "initialize",
"params": {}
}
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/list",
"params": {}
}
{
"jsonrpc": "2.0",
"id": 3,
"method": "tools/call",
"params": {
"name": "smartagent_places_search",
"arguments": {
"region_id": "new-york-city",
"q": "pizza",
"limit": 5
}
}
}