v4
OpenAPI 3.1.02026-07-313621,3961.8 MBList Mcp Server Tools
Retrieve all tools available for a specific MCP server configuration.
Path parameters
ID of the MCP Server.
ID of the MCP Server.
Query parameters
Environment whose values are used when the MCP server URL, headers, or auth connection reference environment variables. Mirrors the environment a conversation would run in; defaults to production.
Environment whose values are used when the MCP server URL, headers, or auth connection reference environment variables. Mirrors the environment a conversation would run in; defaults to production.
Headers
Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.
Your API key. This is required by most endpoints to access our API programmatically. You can view your xi-api-key using the 'Profile' tab on the website.
Response
Successful Response
Example response
{
"success": true,
"tools": [
{
"description": "Gets current weather conditions for a location.",
"inputSchema": {
"properties": {
"latitude": {
"description": "Latitude",
"type": "string"
},
"longitude": {
"description": "Longitude",
"type": "string"
}
},
"required": [
"latitude",
"longitude"
],
"type": "object"
},
"name": "weather_by_zapier_get_current"
},
{
"description": "Description of tool2",
"inputSchema": {
"properties": {},
"type": "object"
},
"name": "tool2"
}
]
}