Sazabi
APIMCP connectors

Search MCP connector tools

GET
/mcp-connectors/tools/search

Search executable third-party MCP connector tools by free-text query. Empty query lists connectors; empty query plus namespace enumerates that connector. Hits omit input schemas unless includeInputSchema is true, which requires one exact namespaced tool and always returns at most one hit.

Query Parameters

projectId?string

Project to search connectors in. Auto-filled from SDK context when omitted.

Formatuuid
query?string

Free-text query over tool names, titles, connector keys, and descriptions. Omit or empty to list connectors, or to enumerate one connector when namespace is set.

namespace?string

Restrict results to one connectionKey or providerId.

Length1 <= length
limit?integer

Maximum number of connectors or tool hits to return.

Range1 <= value <= 100
Default10
offset?integer

Number of connectors or tool hits to skip.

Range0 <= value <= 9007199254740991
Default0
includeInputSchema?|

Load one exact tool's inputSchema. Requires a connectionKey namespace and non-empty query; accepts either toolName or the hit's copy-paste name.

Response Body

application/json

curl -X GET "https://example.com/mcp-connectors/tools/search"
{  "kind": "connectors",  "total": 0,  "connectors": [    {      "connectionKey": "string",      "displayName": "string",      "providerId": "string",      "toolCount": 0    }  ],  "tools": [    {      "connectionKey": "string",      "toolName": "string",      "providerId": "string",      "displayName": "string",      "isReadOnly": true,      "description": "string",      "score": 0,      "inputSchema": {        "property1": null,        "property2": null      }    }  ]}