v53

latestOpenAPI 3.1.0Apache-2.0raw.githubusercontent.com2026-08-021596144.5 KB
MCP

Lists the currently available MCP tools

Lists the currently available MCP tools. Only accessible when EXPOSE_MCP is enabled.

get/mcp/tools

Response

Successful response

objectstring required

Always "list"

Example response

{
  "object": "list",
  "data": [
    {
      "name": "read_file",
      "description": "Read content from a file",
      "server": "http://mcp-filesystem-server:8083/mcp",
      "input_schema": {
        "type": "object",
        "properties": {
          "file_path": {
            "type": "string",
            "description": "Path to the file to read"
          }
        },
        "required": [
          "file_path"
        ]
      }
    }
  ]
}