project_architecture
Design tailored project architectures by specifying project type, tech stack, and key features using the MCP Prompt Server for efficient development workflows.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
features | Yes | 项目主要功能和特性 | |
project_type | Yes | 项目类型(如Web应用、移动应用、API服务等) | |
technologies | Yes | 使用的技术栈(如React, Node.js, Python等) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"features": {
"description": "项目主要功能和特性",
"type": "string"
},
"project_type": {
"description": "项目类型(如Web应用、移动应用、API服务等)",
"type": "string"
},
"technologies": {
"description": "使用的技术栈(如React, Node.js, Python等)",
"type": "string"
}
},
"required": [
"project_type",
"technologies",
"features"
],
"type": "object"
}