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

# List Agent MCP Tools

> Probe a remote MCP (Model Context Protocol) server using `tools/list` and return its public tool catalog. Used by the Agent MCP tool wizard before attaching an MCP server to an agent. The internal `add_tools` and `edit_tools` helpers are omitted from the response.



## OpenAPI

````yaml POST /agent/tool/mcp/
openapi: 3.1.0
info:
  title: Outbox AI API
  description: API for managing AI agents (chatbots and voicebots) on the Outbox platform
  version: 1.0.0
servers:
  - url: https://api.getoutbox.ai
security: []
paths:
  /agent/tool/mcp/:
    post:
      tags:
        - agent
      summary: List Tools on a Custom MCP Server
      description: >-
        Probe a remote MCP (Model Context Protocol) server using `tools/list`
        and return its public tool catalog. Used by the Agent MCP tool wizard
        before attaching an MCP server to an agent. The internal `add_tools` and
        `edit_tools` helpers are omitted from the response.
      operationId: agent_tool_mcp_create
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/AgentToolMCPListRequestRequest'
          application/x-www-form-urlencoded:
            schema:
              $ref: '#/components/schemas/AgentToolMCPListRequestRequest'
          multipart/form-data:
            schema:
              $ref: '#/components/schemas/AgentToolMCPListRequestRequest'
        required: true
      responses:
        '200':
          content:
            application/json:
              schema:
                type: array
                items:
                  $ref: '#/components/schemas/AgentToolMCPItem'
          description: Array of MCP tools as reported by the server.
      security:
        - jwtAuth: []
        - {}
components:
  schemas:
    AgentToolMCPListRequestRequest:
      type: object
      properties:
        mcp_url:
          type: string
          minLength: 1
          description: HTTPS URL of the MCP server endpoint.
      required:
        - mcp_url
    AgentToolMCPItem:
      type: object
      properties:
        name:
          type: string
        description:
          type: string
        inputSchema:
          type: object
          additionalProperties: {}
          description: JSON Schema for the tool arguments.
      required:
        - name
  securitySchemes:
    jwtAuth:
      type: http
      scheme: bearer
      bearerFormat: JWT

````