Sazabi
APIMCP connectors

List MCP connectors

GET
/mcp-connectors

List configured MCP connectors within one project with provider, status, and enabled-tool count.

Query Parameters

projectId?string

Project to list connectors for. Auto-filled from SDK context when omitted.

Formatuuid
connectedOnly?|

When true, only return connectors that are connected.

Response Body

application/json

curl -X GET "https://example.com/mcp-connectors"
{  "connectors": [    {      "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"    }  ]}