> ## 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 MCP tools available to the chat surface

> Discovered MCP tools that the LLM can call from this chat surface.

Returned to the UI so users can see what capabilities are available
(knowledge-base search, conversation lookup, agent listings, etc.)
without having to inspect tool calls after the fact.



## OpenAPI

````yaml /api-reference/openapi.json get /v1/mcp-chat/tools
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/mcp-chat/tools:
    get:
      tags:
        - mcp-chat
      summary: List the MCP tools available to the chat surface
      description: |-
        Discovered MCP tools that the LLM can call from this chat surface.

        Returned to the UI so users can see what capabilities are available
        (knowledge-base search, conversation lookup, agent listings, etc.)
        without having to inspect tool calls after the fact.
      operationId: list_tools_v1_mcp_chat_tools_get
      responses:
        '200':
          description: Successful Response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/ToolListResponse'
      security:
        - APIKeyHeader: []
components:
  schemas:
    ToolListResponse:
      properties:
        tools:
          items:
            $ref: '#/components/schemas/ToolInfo'
          type: array
          title: Tools
      type: object
      required:
        - tools
      title: ToolListResponse
      description: Response body for ``GET /v1/mcp-chat/tools``.
    ToolInfo:
      properties:
        name:
          type: string
          title: Name
        description:
          type: string
          title: Description
        input_schema:
          anyOf:
            - additionalProperties: true
              type: object
            - type: 'null'
          title: Input Schema
      type: object
      required:
        - name
        - description
      title: ToolInfo
      description: One discovered MCP tool, as shown in the UI dropdown.
  securitySchemes:
    APIKeyHeader:
      type: apiKey
      in: header
      name: x-api-key

````