> ## 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 assistant can enable

> Static projection of the hard-coded platform-tool registry.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/assistants/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.87.0
servers:
  - url: https://api-sandbox.featherhq.com
    description: Sandbox
  - url: http://localhost:8000
    description: Local dev
security: []
paths:
  /v1/assistants/platform-tools/catalog:
    get:
      tags:
        - assistants
      summary: List the platform tools an assistant can enable
      description: Static projection of the hard-coded platform-tool registry.
      operationId: getAssistantPlatformToolCatalog
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/PlatformToolCatalogResponse'
      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).
    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

````