generate_project
Create project specifications and file structures by describing your project idea. The tool generates MCP proposals for documentation and file creation, enabling efficient project setup with optional file writing.
Instructions
Generate a project spec and return MCP create_file/edit_file proposals. Set allowWrite=true to write files.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
allowWrite | No | ||
prompt | Yes |
Input Schema (JSON Schema)
{
"properties": {
"allowWrite": {
"type": "boolean"
},
"prompt": {
"type": "string"
}
},
"required": [
"prompt"
],
"type": "object"
}