list_servers
Retrieve all servers managed by the Coolify self-hosted PaaS platform to monitor infrastructure and manage deployments.
Instructions
List all servers in Coolify
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/handlers.ts:70-71 (handler)Handler that executes the list_servers tool by calling the Coolify API GET /servers endpoint.case 'list_servers': return client.get('/servers');
- src/tools/definitions.ts:152-156 (schema)Schema definition including name, description, and input schema (no parameters required) for the list_servers tool.{ name: 'list_servers', description: 'List all servers in Coolify', inputSchema: { type: 'object', properties: {}, required: [] } },
- src/index.ts:37-38 (registration)Registration of all tools (including list_servers) via the dynamic getToolDefinitions() call in the MCP server's ListTools handler.tools: getToolDefinitions() }));
- src/tools/definitions.ts:12-12 (helper)Inclusion of list_servers in the READ_ONLY_TOOLS array, which determines availability in read-only mode and filters tool definitions.'list_servers',