tools

List all tools

Get a paginated list of all MCP tools across servers. Use the q parameter for semantic search.

get/tools

Query parameters

qstring required
pageinteger
pageSizeinteger
topKinteger
serverIdstring uuid
serverQualifiedNamestring
serverVerified'0' | '1' | 'true' | 'false'
serverIsDeployed'0' | '1' | 'true' | 'false'
readOnlyHint'0' | '1' | 'true' | 'false'
destructiveHint'0' | '1' | 'true' | 'false'
idempotentHint'0' | '1' | 'true' | 'false'

Response

Successful response

Example response

{
  "tools": [
    {
      "id": "abc123:web_search",
      "server": {
        "id": "abc123",
        "qualifiedName": "exa",
        "displayName": "Exa Search",
        "iconUrl": "https://example.com/icon.png",
        "verified": true,
        "isDeployed": true
      }
    }
  ],
  "pagination": {
    "currentPage": 1,
    "pageSize": 21,
    "totalPages": 5,
    "totalCount": 100
  }
}

Changes