list_servers
Discover available MCP servers through the gateway to access their tools. Your access is determined by gateway policy rules.
Instructions
Discover downstream MCP servers available through this gateway. Your access is determined by gateway policy rules. Workflow: 1) Call list_servers to discover servers, 2) Call get_server_tools to see available tools, 3) Call execute_tool to use them.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| agent_id | No | Your agent identifier (leave empty if not provided to you) | |
| include_metadata | No | Include technical details (transport, command, url) |
Input Schema (JSON Schema)
{
"properties": {
"agent_id": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"default": null,
"description": "Your agent identifier (leave empty if not provided to you)"
},
"include_metadata": {
"default": false,
"description": "Include technical details (transport, command, url)",
"type": "boolean"
}
},
"type": "object"
}