Tools Catalog

The agent tool catalog.

1 action. Each is callable by the agent as a tool, over HTTP via /api/invoke, and (usually) from a UI page.

tools.list

GET

List every action in the platform registry. Each action is both a REST endpoint and an LLM tool — agents can call any of these.

  • AI tool: tools_list
  • API: GET /api/invoke/tools.list

Input

No parameters.

JSON Schema
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "properties": {},
  "additionalProperties": {}
}