Skip to main content
Glama

create_project

Create a new project to organize applications and services within Coolify deployments, enabling DevOps teams to structure their infrastructure and manage resources effectively.

Instructions

Create a new project to organize applications and services.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
descriptionNoOptional description of the project
nameYesName of the project

Implementation Reference

  • The execution handler for the create_project tool. It sends a POST request to the Coolify API endpoint '/projects' with the tool arguments and returns the JSON response.
    case 'create_project':
      const createProjectResponse = await this.axiosInstance.post('/projects', request.params.arguments);
      return {
        content: [{ type: 'text', text: JSON.stringify(createProjectResponse.data, null, 2) }]
      };
  • src/index.ts:463-485 (registration)
    Registration of the create_project tool in the list_tools response, including its name, description, and input schema.
    {
      name: 'create_project',
      description: 'Create a new project to organize applications and services.',
      inputSchema: {
        type: 'object',
        properties: {
          name: {
            type: 'string',
            description: 'Name of the project',
            examples: ['My App']
          },
          description: {
            type: 'string',
            description: 'Optional description of the project',
            examples: ['Production environment for my application']
          }
        },
        required: ['name'],
        examples: [
          { name: 'My App', description: 'Production environment for my application' }
        ]
      }
    },

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/wrediam/coolify-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server