Search MCP connector tools
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
Project to search connectors in. Auto-filled from SDK context when omitted.
uuidFree-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.
Restrict results to one connectionKey or providerId.
1 <= lengthMaximum number of connectors or tool hits to return.
1 <= value <= 10010Number of connectors or tool hits to skip.
0 <= value <= 90071992547409910Load 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 } } ]}