Skip to main content
Create a new project

Tool details

FieldValue
Namecreate_project
GroupProjects

Playground

Input schema

Input schema
{
  "type": "object",
  "properties": {
    "name": {
      "type": "string",
      "description": "Project name"
    },
    "slug": {
      "type": "string",
      "description": "Project slug (URL-friendly identifier)"
    },
    "template_slug": {
      "type": "string",
      "description": "Template slug to use (e.g., \"blank\", \"chat\"). Identifies the template project to fork from."
    }
  },
  "required": [
    "name",
    "slug"
  ],
  "additionalProperties": false,
  "description": "Input schema for the create_project tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}

Output schema

Output schema
{
  "type": "object",
  "properties": {
    "id": {
      "type": "string",
      "description": "Unique identifier for the returned record."
    },
    "name": {
      "type": "string",
      "description": "Human-readable name for the returned record."
    },
    "slug": {
      "type": "string",
      "description": "The slug associated with this tool result."
    }
  },
  "required": [
    "id",
    "name",
    "slug"
  ],
  "additionalProperties": false,
  "description": "Structured result returned by the create_project tool.",
  "$schema": "http://json-schema.org/draft-07/schema#"
}