Context Engineering MCP Server

Context Engineering MCP Server

Automates Cole Medin's context engineering methodology to generate high-quality Product Requirements Prompts (PRPs) by analyzing existing codebases, asking contextual questions, and synthesizing insights.

Category
Visit Server

README

Context Engineering MCP Server

๐Ÿš€ A comprehensive MCP server that automates Cole Medin's context engineering methodology for creating high-quality Product Requirements Prompts (PRPs).

Build Status TypeScript MCP Tests License

๐ŸŽฏ Overview

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.

What This Server Does

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

Why Use This Server?

Instead of starting with blank requirements documents:

  1. Analyzes your existing code to understand architecture and patterns
  2. Asks intelligent questions specific to your tech stack and domain
  3. Synthesizes insights into comprehensive documentation
  4. Generates actionable PRPs that account for your current context
  5. Provides storage and versioning for long-term project management

๐Ÿ“‹ MCP Tools (9 Available)

Core Context Engineering Tools

  1. list_templates - List all available PRP templates with optional category filtering
  2. generate_prp - Generate a Product Requirements Prompt based on a template and project context
  3. validate_prp - Validate a PRP against context engineering best practices
  4. search_templates - Search for templates by name, description, or tags
  5. create_custom_template - Create new custom PRP templates
  6. analyze_context - Analyze project context to recommend suitable templates and improvements

Storage & Management Tools

  1. list_prps - List all stored PRPs with filtering and search capabilities
  2. update_prp - Update existing PRPs with version tracking
  3. manage_storage - Manage storage operations, backup, and maintenance

๐Ÿ“š MCP Resources (5 Available)

  • 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

๐Ÿš€ Quick Start

Installation

# 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

Demo Integration

# Run the comprehensive demo
node demo-integration.js

โš™๏ธ Claude Desktop Configuration

Add 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"
      }
    }
  }
}

Claude Code Integration

# Add to Claude Code via MCP
claude-code mcp add context-engineering /path/to/context-engineering-mcp-server/dist/index.js

๐Ÿ”ง Configuration Options

Environment Variables

  • TEMPLATES_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)

Server Capabilities

  • 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

๐Ÿ“– Usage Examples

Basic PRP Generation

// 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'
});

Context Analysis Workflow

// 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
});

Storage Management

// 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'
});

๐Ÿ—๏ธ Architecture

Transport & Protocol

  • Protocol: MCP (Model Context Protocol) v0.6.0
  • Transport: StdioServerTransport for client communication
  • Security: Input validation with Zod schemas

Core Components

TemplateManager

  • Loads templates from internal and external directories
  • Provides search, filtering, and categorization
  • Handles template validation and caching
  • Syncs with Cole Medin's upstream repository

PRPGenerator

  • 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

StorageSystem

  • Persistent storage for PRPs and project context
  • Version tracking with diff generation
  • Concurrent operation management
  • Backup and recovery capabilities

IntegrationsManager

  • Seamless integration with Archon MCP server
  • Automatic task creation from PRP sections
  • Knowledge synchronization
  • Health monitoring and fallback handling

External Integration

The project uses git subtree to integrate Cole Medin's original templates:

# Sync with upstream templates
./scripts/sync-templates.sh

๐Ÿงช Testing

The 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

Test Coverage

  • 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.

๐Ÿ› ๏ธ Development

Prerequisites

  • Node.js 18+
  • npm or yarn
  • TypeScript 5.3+

Development Commands

# 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

Project Structure

โ”œโ”€โ”€ 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

๐Ÿค Contributing

We welcome contributions! This project builds upon Cole Medin's excellent foundation.

Development Workflow

  1. Follow TDD approach - write tests first
  2. Use TypeScript with strict mode
  3. Follow ESLint and Prettier configurations
  4. Update tests when adding new features
  5. Keep external templates synced via git subtree
  6. Ensure all CI checks pass

Code Style

  • TypeScript strict mode enabled
  • ESLint + Prettier for consistent formatting
  • Comprehensive type definitions
  • Extensive test coverage required
  • Documentation for all public APIs

๐Ÿ™ Credits & Attribution

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

Contributors

  • Cole Medin - Original context engineering methodology and templates
  • Claude/Anthropic - MCP server implementation and automation
  • croakingtoad - Project coordination and testing

๐Ÿ“„ License

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.

๐Ÿ”— Related Resources

๐Ÿ“ž Support & Issues

  • Issues: Report bugs and feature requests via GitHub Issues
  • Discussions: Use GitHub Discussions for questions and ideas
  • Documentation: Comprehensive docs in the /docs directory (coming soon)

Made with โค๏ธ by the Locomotive Agency team, built upon Cole Medin's excellent foundation

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
E2B

E2B

Using MCP to run code via e2b.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured