loading…
Search for a command to run...
loading…
An MCP server that scaffolds full-stack projects with consistent structure, Docker setup, CI/CD pipelines, and database configuration.
An MCP server that scaffolds full-stack projects with consistent structure, Docker setup, CI/CD pipelines, and database configuration.
An MCP server that scaffolds full-stack projects with consistent structure, Docker setup, CI/CD pipelines, and database configuration. Built with FastMCP.
Alpha — This project is under active development. APIs and generated output may change between versions. Contributions are welcome! See CONTRIBUTING.md.
Every scaffolded project comes with:
| Project type | Frontend | Deploy target | Repo structure |
|---|---|---|---|
work |
react |
Azure (App Service + Static Web Apps) | Multi-repo (API + frontend) |
work |
htmx |
Azure (App Service) | Single repo |
personal |
react |
Render.com | Multi-repo (API + frontend) |
personal |
htmx |
Render.com | Single repo |
pip install git+https://github.com/dawiegriesel/mcp-dev.git
uv pip install git+https://github.com/dawiegriesel/mcp-dev.git
git clone https://github.com/dawiegriesel/mcp-dev.git
cd mcp-dev
uv sync
For development dependencies (pytest, ruff):
uv sync --extra dev
claude mcp add project-scaffold -- uvx --from "git+https://github.com/dawiegriesel/mcp-dev.git" project-scaffold
Or if installed locally:
claude mcp add project-scaffold -- uv run --directory /path/to/mcp-dev project-scaffold
For local development, create a .mcp.json in the repo root to register the server automatically when you open the repo in Claude Code — no manual claude mcp add needed:
{
"mcpServers": {
"project-scaffold": {
"command": "uv",
"args": ["run", "--directory", "/your/local/path/mcp-dev", "project-scaffold"]
}
}
}
Replace the --directory value with your actual clone path. This file is gitignored to avoid committing local paths.
Add this to your Claude Desktop config file (~/Library/Application Support/Claude/claude_desktop_config.json on macOS, %APPDATA%\Claude\claude_desktop_config.json on Windows):
{
"mcpServers": {
"project-scaffold": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/dawiegriesel/mcp-dev.git",
"project-scaffold"
]
}
}
}
Run the server with stdio transport (the default):
project-scaffold
Or without installing:
uvx --from "git+https://github.com/dawiegriesel/mcp-dev.git" project-scaffold
The server exposes five tools via MCP:
list_templatesReturns all available project template combinations and their default stack.
create_projectScaffolds a complete project. Configuration options:
| Parameter | Required | Default | Description |
|---|---|---|---|
name |
yes | — | Project name (lowercase, hyphens allowed) |
project_type |
yes | — | "work" (Azure) or "personal" (Render.com) |
frontend_type |
yes | — | "react" (SPA) or "htmx" (server-rendered) |
output_dir |
yes | — | Parent directory for the project folder |
description |
no | "" |
Short project description |
db_name |
no | derived from name | Database name |
include_auth |
no | true |
Include JWT auth boilerplate |
include_alembic |
no | true |
Include Alembic migrations |
api_port |
no | 8000 |
Local dev API port |
frontend_port |
no | 3000 |
Local dev frontend port (React only) |
add_componentAdds a component to an existing scaffolded project. Supported components:
api_router — FastAPI router with full CRUD endpoints, plus auto-generated model and schema if fields are provideddb_model — SQLAlchemy model with matching Pydantic schemasComponents not yet implemented: frontend_page, github_action, docker_service.
validate_projectChecks that a scaffolded project has all expected files. Reports any missing files.
get_project_infoReads the .scaffold.json metadata from an existing project and returns its configuration.
Once the MCP server is installed, you can use natural language to scaffold and extend projects. Here are some example prompts to get started:
Create a new personal project called "recipe-box" with an HTMX frontend. Put it in ~/projects. Include auth and migrations.
Scaffold a work project named "inventory-tracker" with a React frontend in ~/work. No auth needed but include Alembic.
I want to start a new side project called "budget-app". It should be a simple server-rendered app I can deploy to Render. Create it in ~/dev.
What project templates are available?
Add a "products" API router to my project at ~/projects/recipe-box with fields: title (str), prep_time (int), servings (int), instructions (text).
Add a database model called "category" with fields name (str) and description (text) to ~/projects/recipe-box.
I need a new "orders" endpoint in my inventory-tracker project. It should have fields for customer_name (str), total (float), and fulfilled (bool).
Check if my project at ~/projects/recipe-box has all the expected files.
What's the configuration for the project in ~/work/inventory-tracker?
Validate the project structure at ~/dev/budget-app and tell me if anything is missing.
my-app/
├── Makefile
├── README.md
├── .env.example
├── docker-compose.yml
├── docker-compose.override.yml
├── .scaffold.json
├── my-app-api/
│ ├── pyproject.toml
│ ├── Dockerfile
│ ├── app/
│ │ ├── main.py
│ │ ├── config.py
│ │ ├── database.py
│ │ ├── models/
│ │ ├── schemas/
│ │ ├── routers/
│ │ └── auth/ (optional)
│ ├── alembic/ (optional)
│ ├── tests/
│ └── .github/workflows/
└── my-app-frontend/
├── package.json
├── vite.config.ts
├── Dockerfile
├── nginx.conf
├── src/
│ ├── App.tsx
│ ├── api/
│ ├── pages/
│ ├── components/
│ └── styles/
└── .github/workflows/
my-app/
├── Makefile
├── README.md
├── .env.example
├── docker-compose.yml
├── pyproject.toml
├── Dockerfile
├── .scaffold.json
├── app/
│ ├── main.py
│ ├── config.py
│ ├── database.py
│ ├── models/
│ ├── schemas/
│ ├── routers/
│ ├── templates/
│ │ ├── base.html
│ │ ├── index.html
│ │ └── partials/
│ ├── static/css/
│ └── auth/ (optional)
├── alembic/ (optional)
└── tests/
# Lint
uv run ruff check src/
# Format
uv run ruff format src/
# Test
uv run pytest
This repo includes a docs-pre-commit Claude agent (.claude/agents/docs-pre-commit.md). When working in Claude Code, it triggers automatically before commits to update CHANGELOG.md, README.md, and CLAUDE.md to reflect the changes being committed.
To trigger it manually, tell Claude: "Update the documentation before I commit."
src/project_scaffold/
├── __main__.py # Entry point — runs mcp.run()
├── server.py # FastMCP server with 5 tool definitions + main()
├── models.py # Pydantic models (ProjectConfig, ComponentConfig)
├── config.py # Constants, type maps, template paths
├── generator.py # Core engine — renders Jinja2 templates to disk
├── renderers/
│ └── api.py # Component generators (add_router, add_model)
└── templates/ # Jinja2 templates (included in package)
├── api/ # FastAPI backend
├── frontend/react/ # React + Vite + TypeScript
├── frontend/htmx/ # HTMX + Tailwind
├── docker/ # Docker Compose
├── cicd/azure/ # GitHub Actions for Azure
├── cicd/render/ # Render.com blueprint
├── alembic/ # Database migrations
└── common/ # README, Makefile, .env, .gitignore
Run in your terminal:
claude mcp add project-scaffold -- npx Security
Low riskAutomated heuristic from public metadata — not a security guarantee.