Skip to main content
GET
/
services
/
{serviceName}
/
tools
List tools for a service
curl --request GET \
  --url http://localhost:7687/services/{serviceName}/tools
{
  "tools": [
    {
      "name": "<string>",
      "description": "<string>",
      "enabled": true
    }
  ]
}

Documentation Index

Fetch the complete documentation index at: https://modelcontrolinterface.mintlify.app/llms.txt

Use this file to discover all available pages before exploring further.

Path Parameters

serviceName
string
required

Normalized service name.

Minimum string length: 1

Query Parameters

query
string

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

enabled
enum<string>

Enabled-state filter. Omit to return all tools.

Available options:
true,
false,
null

Response

Matching tools for the service.

Collection wrapper for service tool listings.

tools
object[]
required

Tools that belong to the requested service and match any filters.

Last modified on May 14, 2026