π A comprehensive MCP server that automates Cole Medin's context engineering methodology for creating high-quality Product Requirements Prompts (PRPs).
This MCP server implements the context engineering methodology created by Cole Medin in his Context Engineering Introduction repository. It provides intelligent automation for creating comprehensive Product Requirements Prompts that account for your existing codebase context.
The Context Engineering MCP Server intelligently analyzes your existing codebase and automatically generates:
- π Contextual Questions based on detected patterns and frameworks
- π Comprehensive INITIAL.md documentation following Cole's methodology
- π Product Requirements Prompts (PRPs) using proven templates
- π― Execution Guidance with agent recommendations and task breakdowns
- πΎ Persistent Storage for managing PRPs and project context
- π Archon Integration for seamless task and knowledge management
Instead of starting with blank requirements documents:
- Analyzes your existing code to understand architecture and patterns
- Asks intelligent questions specific to your tech stack and domain
- Synthesizes insights into comprehensive documentation
- Generates actionable PRPs that account for your current context
- Provides storage and versioning for long-term project management
list_templates- List all available PRP templates with optional category filteringgenerate_prp- Generate a Product Requirements Prompt based on a template and project contextvalidate_prp- Validate a PRP against context engineering best practicessearch_templates- Search for templates by name, description, or tagscreate_custom_template- Create new custom PRP templatesanalyze_context- Analyze project context to recommend suitable templates and improvements
list_prps- List all stored PRPs with filtering and search capabilitiesupdate_prp- Update existing PRPs with version trackingmanage_storage- Manage storage operations, backup, and maintenance
- Templates (
context-engineering://templates) - Collection of PRP templates - Patterns (
context-engineering://patterns) - Code analysis patterns and rules - Initial (
context-engineering://initial) - INITIAL.md generation templates - Rules (
context-engineering://rules) - Global context engineering rules - PRPs (
context-engineering://prps) - Stored Product Requirements Prompts
# Clone the repository
git clone https://github.com/locomotive-agency/context-engineering-mcp.git
cd context-engineering-mcp
# Install dependencies
npm install
# Build the TypeScript code
npm run build
# Start the MCP server
npm start# Run the comprehensive demo
node demo-integration.jsAdd this configuration to your Claude Desktop claude_desktop_config.json:
{
"mcpServers": {
"context-engineering": {
"command": "node",
"args": ["/path/to/context-engineering-mcp-server/dist/index.js"],
"env": {
"TEMPLATES_DIR": "/path/to/context-engineering-mcp-server/templates",
"EXTERNAL_TEMPLATES_DIR": "/path/to/context-engineering-mcp-server/external/context-engineering-intro",
"DATA_DIR": "/path/to/context-engineering-mcp-server/data"
}
}
}
}# Add to Claude Code via MCP
claude-code mcp add context-engineering /path/to/context-engineering-mcp-server/dist/index.jsTEMPLATES_DIR- Directory containing internal templates (default:./templates)EXTERNAL_TEMPLATES_DIR- Directory for Cole's external templates (default:./external/context-engineering-intro)DATA_DIR- Directory for persistent storage (default:./data)NODE_ENV- Environment mode (development,production,test)
- Archon Integration - Automatic integration with Archon MCP for task and knowledge management
- Version Control - Full version tracking for PRPs with diff generation
- Concurrent Operations - Supports up to 10 concurrent storage operations
- Template Synchronization - Automatic syncing with Cole's upstream templates
// List available templates
const templates = await mcp.call('list_templates', { category: 'web-app' });
// Generate a PRP for a Next.js project
const prp = await mcp.call('generate_prp', {
templateId: 'nextjs-app-template',
projectContext: {
name: 'E-commerce Platform',
domain: 'retail',
stakeholders: ['Product Manager', 'Engineering Team', 'Design Team'],
objectives: ['Build scalable e-commerce platform', 'Implement modern UX'],
constraints: ['Budget: $50k', 'Timeline: 3 months']
},
saveToStorage: true,
outputFormat: 'markdown'
});// Analyze project context
const analysis = await mcp.call('analyze_context', {
projectContext: {
name: 'Mobile Banking App',
domain: 'fintech',
description: 'Secure mobile banking application with real-time transactions',
stakeholders: ['Bank Executives', 'Compliance Team', 'Customers'],
constraints: ['PCI DSS Compliance', 'SOX Compliance', 'High Security Requirements']
}
});
// Use recommended template
const prp = await mcp.call('generate_prp', {
templateId: analysis.recommendedTemplates[0].id,
projectContext: analysis.enhancedContext
});// List stored PRPs
const prps = await mcp.call('list_prps', {
category: 'fintech',
status: 'active',
limit: 10
});
// Update a PRP
const updated = await mcp.call('update_prp', {
id: 'prp-123',
updates: {
status: 'completed',
metadata: { version: '2.0' }
},
comment: 'Updated requirements based on stakeholder feedback'
});- Protocol: MCP (Model Context Protocol) v0.6.0
- Transport: StdioServerTransport for client communication
- Security: Input validation with Zod schemas
- Loads templates from internal and external directories
- Provides search, filtering, and categorization
- Handles template validation and caching
- Syncs with Cole Medin's upstream repository
- Generates PRPs from templates with context substitution
- Supports multiple output formats (Markdown, JSON, HTML)
- Handles custom sections and metadata
- Integrates with storage and version control
- Persistent storage for PRPs and project context
- Version tracking with diff generation
- Concurrent operation management
- Backup and recovery capabilities
- Seamless integration with Archon MCP server
- Automatic task creation from PRP sections
- Knowledge synchronization
- Health monitoring and fallback handling
The project uses git subtree to integrate Cole Medin's original templates:
# Sync with upstream templates
./scripts/sync-templates.shThe project follows Test-Driven Development (TDD) principles:
# Run all tests
npm test
# Run tests with coverage
npm run test:coverage
# Run specific test suites
npm run test:unit # Unit tests
npm run test:integration # Integration tests
npm run test:e2e # End-to-end tests
npm run test:performance # Performance tests
# Watch mode for development
npm run test:watch- Project Structure Tests: Validate directory structure and configuration
- Unit Tests: Test individual components and functions
- Integration Tests: Test MCP tool and resource handlers
- End-to-End Tests: Test complete workflows
- Performance Tests: Test under load and stress conditions
Current test status: 58 tests passing with comprehensive coverage.
- Node.js 18+
- npm or yarn
- TypeScript 5.3+
# Watch mode for development
npm run dev
# Type checking
npm run type-check
# Linting and formatting
npm run lint
npm run lint:fix
npm run format
npm run format:check
# Validation pipeline
npm run validate # Runs lint + type-check + all tests
# Template synchronization
npm run sync-templatesβββ src/
β βββ tools/ # MCP tool implementations (9 tools)
β β βββ generate-prp.ts
β β βββ validate-prp.ts
β β βββ list-templates.ts
β β βββ search-templates.ts
β β βββ create-custom-template.ts
β β βββ analyze-context.ts
β β βββ list-prps.ts
β β βββ update-prp.ts
β β βββ manage-storage.ts
β βββ resources/ # MCP resource handlers (5 resources)
β β βββ handlers/
β β βββ resource-manager.ts
β βββ lib/ # Core logic components
β β βββ template-manager.ts
β β βββ prp-generator.ts
β β βββ storage.ts
β β βββ change-tracker.ts
β β βββ integrations.ts
β β βββ execution-guidance.ts
β βββ types/ # TypeScript type definitions
β βββ index.ts # Main server entry point
βββ templates/ # Internal PRP templates
βββ external/ # Git subtree for Cole's templates
β βββ context-engineering-intro/
βββ data/ # Persistent storage directory
βββ scripts/ # Utility scripts
β βββ sync-templates.sh # Template synchronization
β βββ test-coverage-report.js
βββ test/ # Test suites
β βββ unit/
β βββ integration/
β βββ e2e/
β βββ performance/
βββ dist/ # Built JavaScript output
We welcome contributions! This project builds upon Cole Medin's excellent foundation.
- Follow TDD approach - write tests first
- Use TypeScript with strict mode
- Follow ESLint and Prettier configurations
- Update tests when adding new features
- Keep external templates synced via git subtree
- Ensure all CI checks pass
- TypeScript strict mode enabled
- ESLint + Prettier for consistent formatting
- Comprehensive type definitions
- Extensive test coverage required
- Documentation for all public APIs
This project is built upon the excellent context engineering methodology created by Cole Medin:
- Original Repository: context-engineering-intro
- Methodology: Cole Medin's context engineering approach for PRP generation
- Templates: Integrated via git subtree from Cole's repository
- Inspiration: Cole's systematic approach to requirements engineering
- Cole Medin - Original context engineering methodology and templates
- Claude/Anthropic - MCP server implementation and automation
- croakingtoad - Project coordination and testing
MIT License - see LICENSE file for details.
This project incorporates templates and methodology from Cole Medin's context-engineering-intro repository, used with attribution under open source principles.
- MCP Specification - Model Context Protocol documentation
- Cole's Context Engineering - Original methodology
- Archon MCP - Task and knowledge management integration
- Claude Desktop - Primary MCP client
- Issues: Report bugs and feature requests via GitHub Issues
- Discussions: Use GitHub Discussions for questions and ideas
- Documentation: Comprehensive docs in the
/docsdirectory (coming soon)
Made with β€οΈ by the Locomotive Agency team, built upon Cole Medin's excellent foundation