> ## Documentation Index
> Fetch the complete documentation index at: https://doc.featherhq.com/llms.txt
> Use this file to discover all available pages before exploring further.

# List the platform tools an agent can enable

> Static projection of the hard-coded platform-tool registry. Org-independent — the dashboard
renders this to drive the per-agent enable/disable toggles without hard-coding the catalog.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/agents/platform-tools/catalog
openapi: 3.1.0
info:
  title: Feather API
  description: >-
    Unified customer experience platform API. Manages identity, conversations,
    memory, agents, procedures, policies, model routing, knowledge bases,
    integrations, and runtime execution.
  version: 1.21.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/agents/platform-tools/catalog:
    get:
      tags:
        - agents
      summary: List the platform tools an agent can enable
      description: >-
        Static projection of the hard-coded platform-tool registry.
        Org-independent — the dashboard

        renders this to drive the per-agent enable/disable toggles without
        hard-coding the catalog.
      operationId: getPlatformToolCatalog
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformToolCatalogResponse'
        '400':
          description: Bad request
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
        '401':
          description: Authentication required
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ErrorResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    PlatformToolCatalogResponse:
      properties:
        tools:
          items:
            $ref: '#/components/schemas/PlatformToolCatalogEntry'
          type: array
          title: Tools
      type: object
      title: PlatformToolCatalogResponse
      description: >-
        The full set of platform tools an agent can enable (org-independent,
        static).
    ErrorResponse:
      properties:
        error:
          type: string
          title: Error
        message:
          type: string
          title: Message
      type: object
      required:
        - error
        - message
      title: ErrorResponse
      description: Standard error response returned by all API error handlers.
    PlatformToolCatalogEntry:
      properties:
        name:
          type: string
          title: Name
        title:
          type: string
          title: Title
        summary:
          type: string
          title: Summary
        description:
          type: string
          title: Description
        kind:
          type: string
          title: Kind
        effect:
          type: string
          title: Effect
        parameters:
          additionalProperties: true
          type: object
          title: Parameters
      type: object
      required:
        - name
        - title
        - summary
        - description
        - kind
        - effect
      title: PlatformToolCatalogEntry
      description: >-
        One available platform tool, projected from the hard-coded registry for
        config UIs.


        ``name`` is the enable-map key + model-facing function name;
        ``title``/``summary`` are the

        human labels the dashboard renders; ``description`` is the model-facing
        prompt copy; ``effect``

        is the runtime control signal the call produces (e.g. ``end_session``);
        ``parameters`` is the

        model-facing JSON Schema for the tool's args.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````