List Tools

Retrieve all custom tools in your account

GET /v2/tools

Query Parameters

ParameterTypeDescription
typestringFilter by tool type (function, code, mcp)
limitintegerMax results (default: 50)
offsetintegerPagination offset

Response

[
  {
    "id": "tool_abc123",
    "name": "check_inventory",
    "type": "function",
    "description": "Check product inventory levels",
    "parameters": {
      "type": "object",
      "properties": {
        "product_id": {"type": "string"}
      }
    },
    "endpoint_url": "https://api.example.com/inventory",
    "created_at": "2026-03-25T10:00:00Z"
  }
]

On this page