complete_setup_workflow
Automate MCP server setup: analyze codebase, generate context files, and configure IDE integrations for efficient project management and AI agent deployment.
Instructions
Complete MCP setup workflow: analyze codebase, create all context files, and configure automation
Input Schema
Name | Required | Description | Default |
---|---|---|---|
ide | No | Which IDE configurations to create | |
includeAll | No | Include all optional features | |
projectName | Yes | Name of the project | |
projectPath | Yes | Path to the project directory | |
teamSize | No | Number of developers on the team | |
updateSchedule | No | How often to update context files |
Input Schema (JSON Schema)
{
"properties": {
"ide": {
"description": "Which IDE configurations to create",
"enum": [
"cursor",
"vscode",
"intellij",
"all"
],
"type": "string"
},
"includeAll": {
"description": "Include all optional features",
"type": "boolean"
},
"projectName": {
"description": "Name of the project",
"type": "string"
},
"projectPath": {
"description": "Path to the project directory",
"type": "string"
},
"teamSize": {
"description": "Number of developers on the team",
"type": "number"
},
"updateSchedule": {
"description": "How often to update context files",
"enum": [
"daily",
"weekly",
"on-change",
"manual"
],
"type": "string"
}
},
"required": [
"projectPath",
"projectName"
],
"type": "object"
}