Skip to main content
Glama

create_project

Create a new project in Coolify's self-hosted PaaS to deploy applications, manage databases, and monitor servers from AI assistants.

Instructions

Create a new project

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesProject name
descriptionNoProject description

Implementation Reference

  • Executes the 'create_project' tool: requires 'name' parameter and performs a POST request to the Coolify API '/projects' endpoint using the client.
    case 'create_project': requireParam(args, 'name'); return client.post('/projects', args);
  • Registers the 'create_project' tool in the tool definitions array with name, description, and input schema.
    { 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 for CreateProjectInput used for type validation.
    export interface CreateProjectInput { name: string; description?: string; }
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