Enables GitHub Copilot to read and execute multi-phase architectural generation plans by accessing structured Functional Requirements Documents (FRDs).
Enables the automatic generation of unit tests, mocks, and coverage reports using the Jest testing framework.
Provides specialized blueprints for the automated generation of NestJS boilerplates following Clean Architecture and SOLID principles.
Orchestrates the implementation of JWT-based authentication and secure endpoint protection using the Passport framework.
Sets up SQLite as the default database engine for rapid persistence development in generated projects.
Automatically configures and integrates Swagger documentation for all API endpoints within the generated boilerplate.
Facilitates the integration of database persistence layers, repository patterns, and migrations using TypeORM.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@FRD Orchestratorfolder name: shop-api. Start the orchestration."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
FRD Orchestrator - MCP Server
π Automated NestJS boilerplate generation powered by MCP and structured FRDs
MCP (Model Context Protocol) server that exposes NestJS boilerplate FRDs so GitHub Copilot can regenerate the complete architecture from scratch in any project, following Clean Architecture, SOLID principles, and best practices.
π€ What is MCP and why use it?
MCP (Model Context Protocol) is a standardized way for AI assistants like GitHub Copilot to access external tools and data sources. Think of it as a "bridge" that allows Copilot to:
π Read live documents (your FRDs) instead of outdated copies
π§ Access specialized tools beyond basic file operations
π Get structured data with validation and logging
π Always stay updated - changes to FRDs are immediately available
Why FRDs via MCP instead of just reading files?
Traditional File Reading | MCP + FRDs |
β Stale content when files change | β Always fresh content |
β No validation or error handling | β Built-in validation and logging |
β Manual file path management | β Structured ID-based access |
β No usage tracking | β Full audit trail of what was read |
π― What does this server do?
This MCP server exposes 5 carefully crafted FRDs that define a complete NestJS boilerplate:
FRD-00: π Master orchestration - How GitHub Copilot should execute the 4 phases
FRD-01: ποΈ Boilerplate core - Basic NestJS + Products CRUD + Swagger
FRD-02: ποΈ Database layer - TypeORM + migrations + repository pattern
FRD-03: π Authentication - JWT + Passport + protected endpoints
FRD-04: π§ͺ Unit testing - Jest + mocks + coverage for all modules
π How does the orchestration work?
When you tell GitHub Copilot to generate a boilerplate, here's what happens:
π Copilot reads FRD-00 (master orchestration) to understand the plan
ποΈ Phase 1: Reads FRD-01 β Creates basic NestJS + Products CRUD
ποΈ Phase 2: Reads FRD-02 β Adds database + TypeORM + migrations
π Phase 3: Reads FRD-03 β Implements JWT auth + protected routes
π§ͺ Phase 4: Reads FRD-04 β Generates unit tests for everything
π Final: Generates comprehensive README with setup instructions
Each phase is automatic - no manual intervention required. GitHub Copilot follows the FRDs religiously and ensures each phase works before moving to the next.
β¨ Complete workflow example
# 1. You say this to GitHub Copilot:
"folder name: my-api. Start the orchestration."
# 2. GitHub Copilot automatically:
# - Reads FRD-00 to understand the plan
# - Creates `my-api/` directory
# - Executes Phase 1: Basic NestJS setup
# - Executes Phase 2: Database integration
# - Executes Phase 3: JWT authentication
# - Executes Phase 4: Unit tests
# - Generates final README
# 3. Result: Complete production-ready API with:
# β
Products CRUD with validation
# β
Swagger documentation at /api
# β
Database persistence (SQLite by default)
# β
JWT authentication protecting all routes
# β
Unit tests with >80% coverage
# β
Clean Architecture + SOLID principles
# β
Complete setup documentationThe entire process takes 5-10 minutes and results in a production-ready NestJS API that you can deploy immediately.
Requirements
Python 3.10+
VS Code with GitHub Copilot enabled
uv (recommended) or
pip
Installation
1. Clone/Copy this folder to your project
# Add this MCP server to your existing project
git clone <your-repo> mcp-server
cd mcp-server2. Install dependencies
Option A: With uv (recommended)
uv syncOption B: With pip
pip install fastmcp3. Verify installation
python main.pyYou should see logs like:
[FRD-Orchestrator] 12:34:56 | INFO | Starting MCP FRD-Orchestrator server (stdio)
[FRD-Orchestrator] 12:34:56 | INFO | FRD Directory: /path/to/mcp-server/frdVS Code + GitHub Copilot Configuration
1. Create MCP configuration in your workspace
Create .vscode/mcp.json in your project root:
{
"_note": "This configuration is for academic purposes. The command path depends on the execution environment and may vary based on where the UV tool is installed on different systems.",
"servers": {
"frd-orchestrator": {
"type": "stdio",
"command": "/Users/[your-username]/.local/bin/uv",
"args": ["run", "main.py"]
}
}
}β οΈ Important:
Adjust the path to UV according to your system
Use
which uvto find your UV installation pathIf using Python directly:
"command": "python"and"args": ["main.py"]
2. Ensure GitHub Copilot has MCP access
GitHub Copilot in VS Code automatically detects MCP servers configured in .vscode/mcp.json when MCP support is enabled.
3. Test the connection
Open VS Code in your project and ask GitHub Copilot:
"Show me what's available in FRD-00"If working correctly, you'll see logs in the terminal and Copilot will access the FRD content.
Usage
Once configured, GitHub Copilot automatically has access to the get_frd tool and can read all FRDs on demand.
π― Simple commands to get started:
"folder name: my-awesome-api. Start the orchestration."That's it! GitHub Copilot will:
Create the folder
Read all FRDs automatically
Execute all 4 phases in sequence
Generate a complete, working API
π οΈ Advanced usage:
"Generate just the core boilerplate (Phase 1 only)"
"Add database layer following FRD-02"
"Implement JWT authentication according to FRD-03"
"Generate comprehensive unit tests per FRD-04"
"Show me what FRD-01 contains"π Behind the scenes:
When GitHub Copilot executes, you'll see logs like:
[FRD-Orchestrator] Reading FRD from disk: /path/to/frd/FRD-01-boilerplate-core-products.md
[FRD-Orchestrator] Tool get_frd requested with frd_id=01
[FRD-Orchestrator] FRD read successfully: FRD-01-boilerplate-core-products.md (15,432 characters)This means GitHub Copilot is actively reading the latest version of your FRDs and following them exactly.
β‘ What makes this powerful:
π― Zero configuration - Just one command and everything works
π Structured approach - Each phase builds on the previous
π Always updated - FRDs are read fresh every time
ποΈ Production ready - Not just demos, real deployable code
π Self-documenting - Generated README explains everything
π§ͺ Fully tested - Unit tests included for all modules
File structure
mcp-server/
βββ main.py # MCP Server
βββ README.md # This file
βββ pyproject.toml # Dependencies (create if not exists)
βββ frd/
βββ FRD-00-master-orchestration.md
βββ FRD-01-boilerplate-core-products.md
βββ FRD-02-products-database.md
βββ FRD-03-auth-security.md
βββ FRD-04-unit-testing.mdTroubleshooting
Claude doesn't recognize the get_frd tool
Verify that Claude Desktop is restarted
Check logs in:
macOS:
~/Library/Logs/Claude/mcp*.logWindows:
%APPDATA%\Claude\logs\
Make sure to use absolute paths in
claude_desktop_config.json
Error: FRD_DIR does not exist
The frd/ directory must be next to main.py:
ls -la mcp-server/
# Should show: main.py, frd/Logs don't appear
Change the log level in claude_desktop_config.json:
"env": {
"FRD_ORCH_LOG_LEVEL": "DEBUG"
}Python not found
If using uv:
{
"command": "uv",
"args": ["run", "/absolute/path/to/mcp-server/main.py"]
}Environment variables
Variable | Description | Default |
| Logging level ( |
|
Portability
This directory is 100% portable. To use in another project:
Copy the entire
mcp-server/folderUpdate the path in
claude_desktop_config.jsonRestart Claude Desktop
Ready β
Update FRDs
To modify an FRD:
Edit the file in
frd/*.mdIt's not necessary to restart the server
The next time Jarvis calls
get_frd, it will get the updated version
Author: @jorgegomez
Version: 1.0.0
Date: December 2025
Resources
Looking for Admin?
Admins can modify the Dockerfile, update the server description, and track usage metrics. If you are the server author, to access the admin panel.