Sazabi
APIMCP connectors

Call an MCP connector tool

POST
/mcp-connectors/tools/call

Invoke one executable third-party MCP connector tool using that connection's stored credential.

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

curl -X POST "https://example.com/mcp-connectors/tools/call" \  -H "Content-Type: application/json" \  -d '{    "connectionKey": "string",    "toolName": "string"  }'
{  "ok": true,  "connectionKey": "string",  "toolName": "string",  "result": null,  "structuredContent": null,  "content": [    {      "property1": null,      "property2": null    }  ],  "text": "string"}