Skip to main content
Glama

update_application

Modify application details like name and description in Coolify's self-hosted PaaS using its unique identifier.

Instructions

Update an application

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesApplication UUID
nameNoApplication name
descriptionNoApplication description

Implementation Reference

  • Handler implementation for the 'update_application' tool. It requires the 'uuid' parameter and performs a PATCH request to the Coolify API endpoint `/applications/{uuid}` with the provided arguments.
    case 'update_application': requireParam(args, 'uuid'); return client.patch(`/applications/${args.uuid}`, args);
  • Input schema definition for the 'update_application' tool, specifying required 'uuid' and optional 'name' and 'description' properties.
    { name: 'update_application', description: 'Update an application', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Application UUID' }, name: { type: 'string', description: 'Application name' }, description: { type: 'string', description: 'Application description' } }, required: ['uuid'] } },

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