Sazabi
APIMCP connectors

Inspect an MCP connector's tools

GET
/mcp-connectors/{connectionId}/details

Inspect one MCP connector's tool surface, including each tool's name, description, and read-only status.

Path Parameters

connectionId*string

Connection ID to inspect.

Formatuuid

Query Parameters

projectId?string

Project the connector belongs to. Auto-filled from SDK context when omitted.

Formatuuid

Response Body

application/json

curl -X GET "https://example.com/mcp-connectors/497f6eca-6276-4993-bfeb-53cbbbba6f08/details"
{  "connector": {    "connectionId": "84b500d7-71c8-4b1f-adf4-f1eb0000973d",    "connectionKey": "string",    "providerId": "string",    "displayName": "string",    "source": "preset",    "installStatus": "configured",    "authMode": "none",    "transport": "streamable-http",    "serverUrl": "string",    "readOnly": true,    "management": {      "mode": "user",      "managedBy": {        "type": "integration",        "id": "string",        "displayName": "string",        "iconKey": "string"      },      "capabilities": {        "canRename": true,        "canEditCredentials": true,        "canSetReadOnly": true,        "canConfigureTools": true,        "canDisconnect": true      }    },    "enabledToolCount": 0,    "connectedAt": "2019-08-24T14:15:22Z",    "createdAt": "2019-08-24T14:15:22Z",    "updatedAt": "2019-08-24T14:15:22Z"  },  "tools": [    {      "name": "string",      "title": "string",      "description": "string",      "isReadOnly": true,      "enabled": true    }  ]}