Skip to main content
Glama

list_resources

View all applications, services, and databases in your Coolify self-hosted PaaS instance to manage deployments and monitor resources.

Instructions

List all resources (applications, services, databases)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • Handler implementation for the 'list_resources' tool. Calls the Coolify API endpoint '/resources' to list all resources (applications, services, databases).
    case 'list_resources': return client.get('/resources');
  • Schema definition for the 'list_resources' tool, specifying no required input parameters and providing description.
    name: 'list_resources', description: 'List all resources (applications, services, databases)', inputSchema: { type: 'object', properties: {}, required: [] }
  • src/index.ts:36-38 (registration)
    Registration of all tools (including 'list_resources') via MCP's ListToolsRequestSchema handler, using getToolDefinitions() which includes the tool.
    this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
  • getToolDefinitions function that returns the list of available tools, including 'list_resources' in both read-only and full modes since it's in READ_ONLY_TOOLS.
    export function getToolDefinitions() { if (isReadOnlyMode()) { return allToolDefinitions.filter(tool => READ_ONLY_TOOLS.includes(tool.name)); } return allToolDefinitions; }
  • 'list_resources' included in READ_ONLY_TOOLS array, ensuring it's available even in read-only mode.
    'list_resources',

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kof70/coolify-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server