Skip to main content
POST
/
api
/
mcp
JSON-RPC 2.0 endpoint
curl --request POST \
  --url https://www.intervyo.ai/api/mcp \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <api-key>' \
  --data '
{
  "jsonrpc": "<string>",
  "method": "<string>",
  "id": "<string>",
  "params": {}
}
'
{
  "error": "<string>",
  "issues": [
    {}
  ]
}

Authorizations

x-api-key
string
header
required

API key with the iv_live_ prefix. Create one under Developer → API Keys.

Body

application/json
jsonrpc
string
required

Must be "2.0".

method
string
required

initialize | tools/list | tools/call | ping.

id
string

Request id (echoed in response). Omit for notifications.

params
object

Method-specific params. For tools/call: { name, arguments }.

Response

Success

Last modified on June 3, 2026