Authorizations
Authentication header containing API key (find it in dashboard). The format is "Bearer YOUR_API_KEY"
Path Parameters
Unique id of the agent to get MCP tools for.
Example:
"oBeDLoLOeuAbiuaMFXRtDOLriTJ5tSxD"
Query Parameters
Optional version of the API to use for this request.
Example:
1
The ID of the MCP server to get tools from.
Example:
"mcp-server-1"
Response
Successfully retrieved MCP tools.
Name of the MCP tool.
Example:
"search_files"
Description of what the MCP tool does.
Example:
"Search for files in the filesystem"
JSON schema defining the input parameters for the tool.
Example:
{
"type": "object",
"properties": {
"query": {
"type": "string",
"description": "Search query"
}
},
"required": ["query"]
}