StacksFinder

generate_mcp_kit

Generate a complete project kit with optimal tech stack and MCP recommendations based on project description.

Remote hoklims/stacksfinder-mcp

Other tools also called generate_mcp_kit? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "scale": {
      "enum": [
        "mvp",
        "startup",
        "growth",
        "enterprise"
      ],
      "type": "string",
      "description": "Project scale if known"
    },
    "priorities": {
      "type": "array",
      "items": {
        "enum": [
          "time-to-market",
          "scalability",
          "developer-experience",
          "cost-efficiency",
          "performance",
          "security",
          "maintainability"
        ],
        "type": "string"
      },
      "maxItems": 3
    },
    "projectType": {
      "enum": [
        "web-app",
        "mobile-app",
        "api",
        "desktop",
        "cli",
        "library",
        "e-commerce",
        "saas",
        "marketplace"
      ],
      "type": "string",
      "description": "Project type if known"
    },
    "projectDescription": {
      "type": "string",
      "description": "Describe your project (50-5000 chars)"
    }
  }
}