Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.auvy.ai/llms.txt

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

Tools API

Returns metadata for built-in native tools (name, description, and JSON schema).

Endpoint

GET /v1/tools

Authentication

Requires standard API authentication (API key or user JWT).

Response

Returns an array:
[
  {
    "name": "search",
    "description": "Unified resource discovery (POST /v1/search)...",
    "schema": {
      "type": "object",
      "properties": {
        "query": { "type": "string" }
      },
      "required": ["query"]
    }
  }
]

Use Cases

  • Build tool pickers in internal dashboards
  • Introspect input schemas for CLI/MCP adapters
  • Keep tool documentation in sync with the runtime tool registry

Notes

  • Data comes from the same native tool metadata used by API, agent-end, MCP, and CLI (getNativeToolsForAPI()AUVY_NATIVE: same names and JSON schemas everywhere).