Skip to main content
Glama

get_application_deployments

Retrieve deployment history for a specific application in Coolify to monitor release status and track changes.

Instructions

Get all deployments for an application

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesApplication UUID

Implementation Reference

  • The handler case in the main switch statement that implements the tool logic: requires application 'uuid' and fetches deployments via the Coolify client GET /deployments/applications/{uuid}.
    case 'get_application_deployments': requireParam(args, 'uuid'); return client.get(`/deployments/applications/${args.uuid}`);
  • The tool definition object in allToolDefinitions array, providing name, description, and input schema (requires 'uuid' of type string). This schema is used for MCP tool registration.
    { name: 'get_application_deployments', description: 'Get all deployments for an application', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Application UUID' } }, required: ['uuid'] } },
  • Inclusion in READ_ONLY_TOOLS array, marking it as a read-only tool that is always available even in read-only mode.
    'get_application_deployments',

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