v28

latestOpenAPI 3.0.3Apache 2.0raw.githubusercontent.com2026-05-2887246443.7 KB

Get MCP tools for a specific agent

get/get-mcp-tools/{agent_id}

Path parameters

agent_idstring required
Example:oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD

Unique id of the agent to get MCP tools for.

Query parameters

integer
OR
string
Example:1

Optional version of the agent to use for this request. Default to latest version.

mcp_idstring required
Example:mcp-server-1

The ID of the MCP server to get tools from.

component_idstring
Example:component-123

The ID of the component if the MCP server is configured under a component.

Response

Successfully retrieved MCP tools.

namestring required

Name of the MCP tool.

descriptionstring required

Description of what the MCP tool does.

inputSchemaobject required

JSON schema defining the input parameters for the tool.

Example response

[
  {
    "name": "search_files",
    "description": "Search for files in the filesystem",
    "inputSchema": {
      "type": "object",
      "properties": {
        "query": {
          "type": "string",
          "description": "Search query"
        }
      },
      "required": [
        "query"
      ]
    }
  }
]