Skip to main content
GET
/
tools
List tools
curl --request GET \
  --url http://localhost:9371/tools
{
  "tools": [
    {
      "serviceId": "<string>",
      "id": "<string>",
      "name": "<string>",
      "description": "<string>",
      "enabled": true,
      "effectivelyEnabled": true
    }
  ]
}

Query Parameters

serviceId
string

Optional service identifier used to scope tool results.

query
string

Free-text query used to match tool names and descriptions.

limit
string

Maximum number of matching tools to return, as a positive integer string.

enabled
enum<string>

Enabled-state filter. Omit to return all tools.

Available options:
true,
false

Response

Matching tools.

Collection wrapper for tool listings.

tools
object[]
required

Tools that match the supplied filters.

Last modified on July 1, 2026