Skip to main content
GET
/
connect
/
{namespace}
/
{connectionId}
/
.tools
List tools
curl --request GET \
  --url https://api.smithery.ai/connect/{namespace}/{connectionId}/.tools \
  --header 'Authorization: Bearer <token>'
{
  "tools": [
    {
      "name": "<string>",
      "inputSchema": {
        "type": "<string>",
        "properties": {},
        "required": [
          "<string>"
        ]
      },
      "title": "<string>",
      "icons": [
        {
          "src": "<string>",
          "mimeType": "<string>",
          "sizes": [
            "<string>"
          ]
        }
      ],
      "description": "<string>",
      "outputSchema": {
        "type": "<string>",
        "properties": {},
        "required": [
          "<string>"
        ]
      },
      "annotations": {
        "title": "<string>",
        "readOnlyHint": true,
        "destructiveHint": true,
        "idempotentHint": true,
        "openWorldHint": true
      },
      "execution": {},
      "_meta": {}
    }
  ]
}

Authorizations

Authorization
string
header
required

Smithery API key as Bearer token

Path Parameters

namespace
string
required
connectionId
string
required

Response

Tool list

tools
object[]
required