Skip to main content
Glama

delete_project

Remove a project from the Coolify platform by specifying its UUID. When security confirmation is enabled, include the confirm parameter to authorize this operation.

Instructions

Delete a project. When COOLIFY_REQUIRE_CONFIRM=true, requires confirm: true parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
uuidYesProject UUID
confirmNoConfirm the dangerous operation (required when COOLIFY_REQUIRE_CONFIRM=true)

Implementation Reference

  • The core handler logic for the 'delete_project' tool. It requires a 'uuid' parameter and issues a DELETE request to the Coolify API endpoint `/projects/${uuid}` to permanently delete the project.
    case 'delete_project': requireParam(args, 'uuid'); return client.delete(`/projects/${args.uuid}`);
  • Input schema and metadata for the 'delete_project' tool, defining required 'uuid' and optional 'confirm' parameters, used for MCP tool registration and validation.
    { name: 'delete_project', description: 'Delete a project. When COOLIFY_REQUIRE_CONFIRM=true, requires confirm: true parameter.', inputSchema: { type: 'object', properties: { uuid: { type: 'string', description: 'Project UUID' }, confirm: { type: 'boolean', description: 'Confirm the dangerous operation (required when COOLIFY_REQUIRE_CONFIRM=true)' } }, required: ['uuid'] }
  • 'delete_project' is classified as a dangerous operation, triggering confirmation checks via isDangerousOperation().
    'delete_project',
  • Warning message displayed when confirmation is required for the 'delete_project' tool.
    delete_project: 'This will permanently delete the project and all its resources.',
Install Server

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