Skip to main content
Glama

create_project

Create a new project in Coolify self-hosted PaaS to deploy applications and manage resources. Specify project name and description to organize your deployments.

Instructions

Create a new project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProject name
descriptionNoProject description

Implementation Reference

  • Handler implementation for 'create_project' tool: requires 'name' argument and performs POST request to Coolify API endpoint '/projects'.
    case 'create_project': requireParam(args, 'name'); return client.post('/projects', args);
  • Tool definition including name, description, and JSON input schema for 'create_project' (MCP tool registration).
    { name: 'create_project', description: 'Create a new project', inputSchema: { type: 'object', properties: { name: { type: 'string', description: 'Project name' }, description: { type: 'string', description: 'Project description' } }, required: ['name'] } },
  • TypeScript interface defining input shape for create_project (used for type safety).
    export interface CreateProjectInput { name: string; description?: string; }
  • src/index.ts:36-38 (registration)
    MCP server registers all tools (including create_project) via ListToolsRequestSchema handler calling getToolDefinitions() from tools module.
    this.server.setRequestHandler(ListToolsRequestSchema, async () => ({ tools: getToolDefinitions() }));
  • Main MCP CallToolRequestSchema handler dispatches to handleTool (which contains the create_project case).
    const result = await handleTool(this.client, name, args || {});

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