Skip to main content
POST
/
agent
/
tool
/
mcp
List Tools on a Custom MCP Server
curl --request POST \
  --url https://api.getoutbox.ai/agent/tool/mcp/ \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "mcp_url": "<string>"
}
'
[
  {
    "name": "<string>",
    "description": "<string>",
    "inputSchema": {}
  }
]

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Body

mcp_url
string
required

HTTPS URL of the MCP server endpoint.

Minimum string length: 1

Response

200 - application/json

Array of MCP tools as reported by the server.

name
string
required
description
string
inputSchema
object

JSON Schema for the tool arguments.