MCP (Model Context Protocol) ADR (Architectural Decision Record) Analysis Server
Your ADRs are lying to you. This MCP server catches it — live drift detection validates architectural decisions against your actual code. Plus content safety, decision memory, and 64 tools powered by your host LLM via CE-MCP.
What is MCP?
The Model Context Protocol (MCP) is an open standard that enables seamless integration between AI assistants and external tools and data sources. Think of it as a universal adapter that lets AI assistants like Claude, Cline, and Cursor connect to specialized servers. This server gives your AI assistant the ability to detect ADR drift against live code, mask sensitive content before it leaks, and remember architectural decisions across conversations.
TL;DR
What: MCP server that validates architectural decisions against your actual code — drift detection, content safety, and decision memory
Who: AI coding assistants (Claude, Cline, Cursor, Windsurf), enterprise architects, development teams
Why: Catch stale ADRs before they cause production incidents — live validation against code evidence, no API key required
How: npm install -g mcp-adr-analysis-server → Add to your MCP client → Start analyzing
Key Features: Tree-sitter AST analysis • Security content masking • Drift detection • CE-MCP orchestration directives • Deployment readiness validation
Key Terms
| Term | Definition |
|---|---|
| ADR | Architectural Decision Record — A document that captures an important architectural decision along with its context, alternatives considered, and consequences. |
| MCP | Model Context Protocol — An open standard enabling AI assistants to connect to external tools and data sources. |
| CE-MCP | Claude-Enriched MCP — Execution mode where tools return orchestration directives for the host LLM instead of making their own AI calls. Default since v2.14. |
| Tree-sitter | An incremental parsing library that provides AST (Abstract Syntax Tree) analysis for 50+ languages. Used for semantic code understanding, extracting function signatures, and identifying architectural patterns. |
| Session & Tool-Usage Tracker | Project-local tracking of session intents, tool executions, and ADR registrations, with keyword-scored retrieval over JSON snapshots. Supports workflow continuity and tool-usage evidence — not a graph database. |
| Smart Code Linking | Discovery of code files related to ADRs and architectural decisions, using keyword extraction and ripgrep search. |
| ADR Aggregator | Optional SaaS integration for syncing and sharing ADR context across teams (ADR_AGGREGATOR_API_KEY). |
Author: Tosin Akinosho | Repository: GitHub
✨ Core Capabilities
🔄 Drift Detection - Validate ADR decisions against live code and infrastructure evidence 🛡️ Content Safety - Detect and mask secrets, PII, and sensitive content automatically 🧠 Decision Memory - Session & tool-usage tracking with keyword-scored retrieval 🏗️ Technology Detection - Identify any tech stack and architectural patterns 📋 ADR Management - Generate, suggest, and maintain Architectural Decision Records 🔗 Smart Code Linking - Discovery of code files related to ADRs and decisions 🚀 Deployment Readiness - Zero-tolerance test validation with hard blocking
📖 View Full Capabilities → · 📜 Release policy → · 🗒️ Changelog →
Prerequisites
Before installing, verify you have:
node --version # Should show v20.0.0 or higher
npm --version # Should show 9.0.0 or higher (included with Node.js 20+)
Required:
- Node.js 20.0.0 or higher — Download or use nvm/fnm
- npm 9.0.0 or higher (included with Node.js 20+)
- An MCP-compatible client — Claude Desktop, Cline, Cursor, or Windsurf
Network Requirements
- Internet access required during
npm installfor native module compilation (tree-sitter incremental code parsers for YAML and TypeScript) - If behind a corporate proxy, set
HTTP_PROXYandHTTPS_PROXYenvironment variables - Offline fallback: If native builds fail, the server operates in reduced mode without tree-sitter code analysis
📦 Quick Installation
# Option 1: Global installation (recommended for frequent use)
npm install -g mcp-adr-analysis-server
# Option 2: Use npx (no installation required)
npx mcp-adr-analysis-server
# Option 3: From source (for development or customization)
git clone https://github.com/tosin2013/mcp-adr-analysis-server.git
cd mcp-adr-analysis-server && npm install && npm run build
# Option 4: RHEL 9/10 systems (special installer)
curl -sSL https://raw.githubusercontent.com/tosin2013/mcp-adr-analysis-server/main/scripts/install-rhel.sh | bash
Note: When installing from source,
npm run buildis required before running the server since thebinentry points to./dist/src/index.js.
📖 Detailed Installation Guide → | RHEL Setup →
⚡ Quick Setup (2 Steps)
- Install:
npm install -g mcp-adr-analysis-server - Configure Client: Add to Claude Desktop, Cline, Cursor, or Windsurf — no API key required
{
"mcpServers": {
"adr-analysis": {
"command": "mcp-adr-analysis-server",
"env": {
"PROJECT_PATH": "/path/to/your/project"
}
}
}
}
That's it. The server runs in CE-MCP mode by default — your host LLM (Claude, GPT, etc.) executes the analysis using orchestration directives returned by the tools. No external API key needed.
Claude Desktop users: Save this JSON to
~/Library/Application Support/Claude/claude_desktop_config.json(macOS) or%APPDATA%\Claude\claude_desktop_config.json(Windows).
Config locations for other clients
| Client | Config file location |
|---|---|
| Claude Desktop (macOS) | ~/Library/Application Support/Claude/claude_desktop_config.json |
| Claude Desktop (Windows) | %APPDATA%\Claude\claude_desktop_config.json |
| Cline (VS Code) | VS Code Settings → Cline → MCP Servers (or .vscode/cline_mcp_settings.json) |
| VS Code (native MCP) | .vscode/mcp.json in workspace root |
| Cursor | Cursor Settings → MCP → Add Server |
📖 VS Code Integration Guide → — step-by-step setup for Cline, Continue, and VS Code native MCP with example configs.
Optional: OpenRouter Full Mode (legacy)
If you want the server to make its own AI calls (bypassing the host LLM), add an OpenRouter API key:
{
"mcpServers": {
"adr-analysis": {
"command": "mcp-adr-analysis-server",
"env": {
"PROJECT_PATH": "/path/to/your/project",
"OPENROUTER_API_KEY": "your_key_here",
"EXECUTION_MODE": "full"
}
}
}
}
Sign up at OpenRouter.ai/keys. This mode is not recommended — CE-MCP produces equivalent results using your existing host LLM context.
Optional: ADR Aggregator integration
{
"mcpServers": {
"adr-analysis": {
"command": "mcp-adr-analysis-server",
"env": {
"PROJECT_PATH": "/path/to/your/project",
"ADR_AGGREGATOR_API_KEY": "agg_your_key_here"
}
}
}
}
Get your API key at adraggregator.com
📖 Full Configuration Guide → | Client Setup →
Execution Modes
| CE-MCP (default) | Full Mode (legacy) | Prompt-Only | |
|---|---|---|---|
| Requires API key? | No | Yes (OPENROUTER_API_KEY) | No |
| Returns | Orchestration directives for the host LLM to execute | Server-side AI analysis results | Prompts you can paste into any AI chat |
| Set via | Default (no env var needed) | EXECUTION_MODE=full | EXECUTION_MODE=prompt-only |
| Best for | All users — recommended | Legacy workflows with dedicated API budget | Offline exploration |
| Tools available | All 64 tools with annotated MCP metadata | All 64 tools | Analysis prompts, templates, local file operations, ADR discovery |
What are CE-MCP directives? When a tool is called, it returns a structured orchestration directive that tells your host LLM what to analyze, what data to gather, and how to format results. The host LLM (e.g. Claude in Claude Desktop, or GPT in Cursor) executes the directive using its existing context window. This means zero additional API costs and better results because the LLM already has your conversation context.
🚀 Usage Examples
Just ask your MCP client in natural language — no code required:
"Analyze this React project's architecture and suggest ADRs for any implicit decisions"
"Generate ADRs from the PRD.md file and create a todo.md with implementation tasks"
"Check this codebase for security issues and provide masking recommendations"
The server returns structured analysis and orchestration directives that your host LLM executes in context.
Programmatic Usage (Advanced)
If you're integrating the server into your own tooling via the MCP SDK:
// Basic project analysis
const analysis = await analyzeProjectEcosystem({
projectPath: '/path/to/project',
analysisType: 'comprehensive',
});
// Generate ADRs from requirements
const adrs = await generateAdrsFromPrd({
prdPath: 'docs/PRD.md',
outputDirectory: 'docs/adrs',
});
// Smart Code Linking - Find code related to ADR decisions
const relatedCode = await findRelatedCode(
'docs/adrs/001-auth-system.md',
'We will implement JWT authentication with Express middleware',
'/path/to/project',
{
useRipgrep: true, // Fast text search
maxFiles: 10, // Limit results
includeContent: true, // Include file contents
}
);
📖 Complete Usage Guide → | API Reference →
Try it out: This repo includes a
sample-project/directory with example ADRs and source code. PointPROJECT_PATHat it to experiment without affecting your own codebase.Note: The sample project is only available when cloning from source (Option 3 above). If you installed via npm (Option 1 or 2), create your own test project or clone the repo separately to access the sample:
git clone --depth 1 https://github.com/tosin2013/mcp-adr-analysis-server.git sample-test
🎯 Use Cases
👨💻 AI Coding Assistants - Enhance Claude, Cline, Cursor with architectural intelligence
💬 Conversational AI - Answer architecture questions with confidence scoring
🤖 Autonomous Agents - Continuous analysis and rule enforcement
🏢 Enterprise Teams - Portfolio analysis and migration planning
🛠️ Technology Stack
Runtime: Node.js 20+ • Language: TypeScript • Framework: MCP SDK • Testing: Vitest (~49% statements, enforced floor) Search: ripgrep (fast recursive text search) + fast-glob (file matching) • AI Integration: CE-MCP orchestration directives (host LLM) • Code Analysis: tree-sitter (incremental code parser) + Smart Code Linking
📖 Technical Details → | CE-MCP Migration Playbook →
📁 Project Structure
src/tools/ # 64 MCP tools with annotated metadata
docs/adrs/ # Architectural Decision Records
tests/ # ~49% statement coverage, floor enforced in CI
.github/ # CI/CD automation
🧪 Testing
npm test # Run all tests
npm run test:coverage # Coverage report
🌐 ADR Aggregator Integration (Optional)
ADR Aggregator is a platform for cross-team ADR visibility and governance. It provides:
- Cross-repository knowledge graphs — See how architectural decisions relate across projects
- Governance dashboards — Track ADR compliance, staleness, and review cycles
- Template library — Access domain-specific ADR templates (security, API, database, etc.)
- Team collaboration — Share architectural decisions organization-wide
Note: ADR Aggregator is optional. All core analysis features work without it.
# Set your API key (get one at adraggregator.com)
export ADR_AGGREGATOR_API_KEY="agg_your_key_here"
Available Tools
| Tool | Description | Free | Pro+ | Team |
|---|---|---|---|---|
sync_to_aggregator | Push local ADRs to platform | ✅ | ✅ | ✅ |
get_adr_context | Pull ADR context from platform | ✅ | ✅ | ✅ |
get_staleness_report | Get ADR governance/health reports | ✅ | ✅ | ✅ |
get_adr_templates | Retrieve domain-specific templates | ✅ | ✅ | ✅ |
get_adr_diagrams | Get Mermaid diagrams for ADRs | — | ✅ | ✅ |
validate_adr_compliance | Validate ADR implementation | — | ✅ | ✅ |
get_knowledge_graph | Cross-repository knowledge graph | — | — | ✅ |
Workflow for New Repos
# 1. Analyze codebase for implicit architectural decisions
suggest_adrs(analysisType: 'implicit_decisions')
# 2. Generate ADR files from suggestions
generate_adr_from_decision(decisionData)
# 3. Save ADRs to docs/adrs/
# 4. (Optional) Sync to adraggregator.com
sync_to_aggregator(full_sync: true)
Benefits: Cross-team visibility • Staleness alerts • Compliance tracking • Organization-wide knowledge graph
📖 ADR Aggregator Guide → | 📖 MCP Integration Guide →
🔧 Development
git clone https://github.com/tosin2013/mcp-adr-analysis-server.git
cd mcp-adr-analysis-server
npm install && npm run build && npm test
Quality Standards: TypeScript strict mode • ESLint • enforced coverage floor • Pre-commit hooks
Viewing Documentation Locally
API documentation is generated with TypeDoc:
npm install # Required once after cloning (installs typedoc)
npm run docs:build # Generate API docs into docs/api/
npm run docs:serve # Serve locally via Python HTTP server
Then open http://localhost:8080 in your browser. Markdown documentation lives in docs/ and can be browsed directly on GitHub.
📖 Development Guide → | Contributing →
🔧 Troubleshooting
Common Issues:
- RHEL Systems: Use special installer script
- Tools return directives instead of results: This is expected in CE-MCP mode — your host LLM executes the directives. For server-side execution, set
EXECUTION_MODE=full+OPENROUTER_API_KEY - Module not found: Run
npm install && npm run build - Permission denied: Check file permissions and project path
📖 Complete Troubleshooting Guide →
🔒 Security & Performance
Security: Automatic secret detection • Content masking • Local processing • Zero trust
Performance: Multi-level caching • Incremental analysis • Parallel processing • Memory optimization
📖 Security Guide → | Performance →
🔐 Security Vulnerability Reporting
Found a security issue? Please read our Security Policy for responsible disclosure procedures. Do not create public issues for security vulnerabilities.
🤝 Contributing
We welcome contributions! Whether you're fixing bugs, adding features, or improving documentation, your help is appreciated.
🌟 Quick Start for Contributors
- Fork the repository
- Clone your fork:
git clone https://github.com/YOUR_USERNAME/mcp-adr-analysis-server.git - Create a branch:
git checkout -b feature/your-feature-name - Make your changes with tests
- Test:
npm test(do not drop below the coverage floor) - Submit a Pull Request
🗺️ Roadmap
Work is tracked in GitHub milestones, and milestone membership is what marks an issue as admitted.
Architectural direction lives in docs/adrs/; release cadence is in
RELEASES.md.
👶 First Time Contributing?
Looking for a good first issue? Check out our good first issues - these are beginner-friendly tasks perfect for getting started!
New to open source? Our Contributing Guide walks you through the entire process step-by-step.
📝 Reporting Issues
Use our issue templates when reporting bugs or requesting features. Templates help us understand and resolve issues faster.
Standards: TypeScript strict • enforced coverage floor • ESLint • Security validation • MCP compliance
📖 Full Contributing Guide → | Code of Conduct →
🔗 Resources
Official: MCP Specification • MCP SDK
Community: MCP Registry • Discord
Project: ADRs • Progress • Publishing Guide
📄 License
MIT License - see LICENSE file for details.
🙏 Acknowledgments
- Anthropic for creating the Model Context Protocol
- The MCP Community for inspiration and best practices
- Contributors who help make this project better
Built with ❤️ by Tosin Akinosho for AI-driven architectural analysis
Empowering AI assistants with drift detection, content safety, and decision memory via CE-MCP orchestration directives.