create_project
Generate a new project with predefined boilerplate configurations by specifying a name, type, and location. Streamlines project setup for developers using Code MCP Server.
Instructions
Create a new project with boilerplate
Input Schema
Name | Required | Description | Default |
---|---|---|---|
name | Yes | Project name | |
path | No | Where to create the project | |
type | Yes | Project type |
Input Schema (JSON Schema)
{
"properties": {
"name": {
"description": "Project name",
"type": "string"
},
"path": {
"description": "Where to create the project",
"type": "string"
},
"type": {
"description": "Project type",
"type": "string"
}
},
"required": [
"name",
"type"
],
"type": "object"
}