get_application
Retrieve detailed information about a specific application in Coolify's self-hosted PaaS using its unique identifier.
Instructions
Get application details
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| uuid | Yes | Application UUID |
Implementation Reference
- src/tools/handlers.ts:147-149 (handler)Handler implementation for the 'get_application' tool. Requires 'uuid' parameter and retrieves application details from the Coolify API client.case 'get_application': requireParam(args, 'uuid'); return client.get(`/applications/${args.uuid}`);
- src/tools/definitions.ts:260-268 (schema)JSON Schema definition for the 'get_application' tool, defining the input parameters (uuid) and structure.{ name: 'get_application', description: 'Get application details', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Application UUID' } }, required: ['uuid'] } },
- src/tools/definitions.ts:21-42 (registration)The 'get_application' tool is registered in the READ_ONLY_TOOLS array, indicating it's available in read-only mode.'get_application', 'get_application_logs', 'get_application_envs', 'get_application_deployments', 'list_services', 'get_service', 'get_service_envs', 'get_service_logs', 'list_databases', 'get_database', 'get_database_backups', 'get_database_logs', 'list_deployments', 'get_deployment', 'list_private_keys', 'get_private_key', 'list_resources', 'list_github_apps', 'get_github_app', 'get_github_app_repositories', 'get_github_app_repository_branches' ];
- src/tools/definitions.ts:1201-1207 (registration)The getToolDefinitions function registers all tools including 'get_application' for the MCP server, with conditional read-only filtering.export function getToolDefinitions() { if (isReadOnlyMode()) { return allToolDefinitions.filter(tool => READ_ONLY_TOOLS.includes(tool.name)); } return allToolDefinitions; }