Skip to main content
Glama

list_applications

Retrieve all deployed applications from your Coolify self-hosted PaaS instance to manage and monitor your projects.

Instructions

List all applications

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The core handler logic for the 'list_applications' tool. It makes a GET request to the Coolify API endpoint '/applications' to retrieve the list of all applications.
    case 'list_applications': return client.get('/applications');
  • The input schema and metadata definition for the 'list_applications' tool. It requires no parameters and lists all applications.
    { name: 'list_applications', description: 'List all applications', inputSchema: { type: 'object', properties: {}, required: [] } },
  • src/index.ts:36-38 (registration)
    Registration of tools via ListToolsRequestSchema handler, which returns all tool definitions including 'list_applications' from getToolDefinitions().
    this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
  • src/index.ts:57-67 (registration)
    The CallToolRequestSchema handler that dispatches to handleTool based on tool name, executing 'list_applications' when requested.
    const result = await handleTool(this.client, name, args || {}); return { content: [{ type: 'text', text: JSON.stringify(result, null, 2) }] }; } catch (error) { if (error instanceof McpError) throw error; const message = error instanceof Error ? error.message : 'Unknown error'; throw new McpError(ErrorCode.InternalError, `Tool execution failed: ${message}`); } });
  • 'list_applications' is included in READ_ONLY_TOOLS array, making it available in read-only mode.
    'list_applications',
Install Server

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