MCP Gateway
ApiSdk proxy

Sdk Search Tools

Search tools via the SDK. Delegates to the shared ``search_tools`` function. If the token has scoped ``allowed_tools``, results are post-filtered to only include those tools.

POST
/api/v1/sdk/tools/search

Authorization

User API Key
AuthorizationBearer <token>

User API key (mgw_usr_live_* or mgw_usr_test_*)

In: header

access_token?|

Request Body

application/json

TypeScript Definitions

Use the request body type in TypeScript.

Response Body

application/json

application/json

curl -X POST "https://loading/api/v1/sdk/tools/search" \  -H "Content-Type: application/json" \  -d '{    "query": "string"  }'
{
  "tools": [
    {}
  ]
}
{
  "detail": [
    {
      "loc": [
        "string"
      ],
      "msg": "string",
      "type": "string",
      "input": null,
      "ctx": {}
    }
  ]
}