StacksFinder
create_blueprint
Create a new tech stack blueprint for a project. The blueprint generation is asynchronous. Returns job ID to poll for completion.
Remote hoklims/stacksfinder-mcp
Other tools also called create_blueprint?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"scale": {
"enum": [
"mvp",
"startup",
"growth",
"enterprise"
],
"type": "string",
"description": "Project scale"
},
"priorities": {
"type": "array",
"items": {
"enum": [
"time-to-market",
"scalability",
"developer-experience",
"cost-efficiency",
"performance",
"security",
"maintainability"
],
"type": "string"
},
"maxItems": 3,
"description": "Top 3 priorities"
},
"constraints": {
"type": "array",
"items": {
"type": "string"
},
"description": "Technology constraints"
},
"projectName": {
"type": "string",
"description": "Project name"
},
"projectType": {
"enum": [
"web-app",
"mobile-app",
"api",
"desktop",
"cli",
"library",
"e-commerce",
"saas",
"marketplace"
],
"type": "string",
"description": "Type of project"
}
}
}