create_project
Generate a new project with initial context, including name, description, technology stack, and current phase, to streamline project setup and maintain context in the MCP Project Context Server.
Instructions
Create a new project with initial context
Input Schema
Name | Required | Description | Default |
---|---|---|---|
currentPhase | Yes | Current project phase | |
description | Yes | Project description | |
name | Yes | Project name | |
techStack | No |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"currentPhase": {
"description": "Current project phase",
"type": "string"
},
"description": {
"description": "Project description",
"type": "string"
},
"name": {
"description": "Project name",
"type": "string"
},
"techStack": {
"additionalProperties": false,
"properties": {
"backend": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"database": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"frontend": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"infrastructure": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
},
"tools": {
"default": [],
"items": {
"type": "string"
},
"type": "array"
}
},
"type": "object"
}
},
"required": [
"name",
"description",
"currentPhase"
],
"type": "object"
}