SnozeDevelopers
API referenceIntegrations

List the tools exposed by a remote MCP connection

Queries the connection's remote MCP server for its tool list and returns the tools with their input schemas, filtered by the allowlist stored on the connection. Requires the `integrations:read` workspace permission; a server that cannot be reached or that answers with an error surfaces as a remote MCP failure.

GET
/v1/workspaces/{workspaceId}/integrations/connections/{connectionId}/mcp/tools
AuthorizationBearer <token>

Workspace API key created in Workspace settings → API keys. Scopes on the key bound what it can read and write.

In: header

Path Parameters

workspaceId*string
connectionId*string

Response Body

application/json

application/json

application/json

curl -X GET "https://example.com/v1/workspaces/string/integrations/connections/string/mcp/tools"
{  "data": [    {      "name": "string",      "title": "string",      "description": "string",      "inputSchema": {}    }  ]}