Coolify MCP Server

by StuMason
Verified
# ADR 005: Application Deployment ## Context Core application deployment functionality - allows deploying and managing applications within environments. ## API Endpoints Used - GET `/applications` (Line 10) - Lists all applications - Query params: environment_uuid (optional) - Response: Array of Application objects - Auth: Bearer token required - ✅ Implemented - POST `/applications/public` (Line 31) - Create new application from public repository - Request body: { project_uuid: string, environment_uuid: string, git_repository: string, git_branch: string, build_pack: "nixpacks" | "static" | "dockerfile" | "dockercompose", ports_exposes: string, name?: string, ...additional configuration } - Response: Application object - Auth: Bearer token required - ✅ Implemented - GET `/applications/{uuid}` (Line ~1600) - Get application details - Response: Application object with status - Auth: Bearer token required - ✅ Implemented - DELETE `/applications/{uuid}` (Line ~1650) - Delete application - Response: 204 No Content - Auth: Bearer token required - ✅ Implemented - POST `/applications/{uuid}/deploy` (Line ~1700) - Trigger application deployment - Response: Deployment object - Auth: Bearer token required - ✅ Implemented ## Implementation Checklist - [x] Application List Resource - [x] resources://coolify/applications/list - [x] Filter by environment/project - [x] Status information - [x] Application Management Tools - [x] createApplication tool - [x] deployApplication tool - [x] configureApplication tool - [x] deleteApplication tool - [x] Application Monitoring - [x] resources://coolify/applications/{id}/status - [x] Basic metrics - [x] Testing - [x] Deployment workflow tests - [x] Configuration management tests ## Dependencies - ADR 001 (Core Server Setup) - ADR 004 (Environment Management)