Skip to main content
Glama

update_project

Modify project details like name and description in Coolify's self-hosted PaaS by providing the project UUID.

Instructions

Update a project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesProject UUID
nameNoProject name
descriptionNoProject description

Implementation Reference

  • Handler implementation for the 'update_project' tool. Requires project UUID and sends a PATCH request to the Coolify API to update the project with provided arguments.
    case 'update_project': requireParam(args, 'uuid'); return client.patch(`/projects/${args.uuid}`, args);
  • Input schema for the 'update_project' tool, defining the expected parameters: required project UUID and optional name and description.
    name: 'update_project', description: 'Update a project', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Project UUID' }, name: { type: 'string', description: 'Project name' }, description: { type: 'string', description: 'Project 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