BLUEPRINT.MCP
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., "@BLUEPRINT.MCPCheck if there's an existing currency formatting utility I can reuse"
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.
BLUEPRINT.MCP
Repository: github.com/Vedv7/BLUEPRINT.MCP
Blueprint gives AI coding agents architectural memory.
It helps Cursor and Claude Code reuse existing abstractions, avoid duplicate helpers, and follow repository structure with advisory-first guidance.
Use in your repo
npm install blueprint-arch-mcpSee docs/USE-IN-YOUR-REPO.md for install, MCP setup, monorepo config, and PR comment bot workflow.
Related MCP server: MarkdownLM MCP Server
Quickstart
From blueprint-mcp/:
npm install
npm run build
node dist/cli/index.js init
node dist/cli/index.js scan
node dist/cli/index.js mcpValidate (one command)
Run the common local/CI workflow without chaining seven commands:
npx blueprint validateRuns, in order: scan → doctor → check --ci → adr check --ci → snapshot (single index pass).
For architecture visibility (report, graph, domains, domain-health):
npx blueprint validate --fullStrict CI gates (fail on warnings):
npx blueprint validate --strictCursor integration rule
Copy the agent rule into your editor (e.g. Cursor → .cursor/rules/blueprint.mdc):
docs/agent-rule-blueprint.mdc
The rule ensures the agent calls:
find_existing_abstractionssuggest_file_placementsuggest_import_reuse
before creating new helpers, utilities, services, components, routes, or abstractions.
Architectural decision memory (ADR)
Blueprint preserves why architecture choices were made — not just what files exist.
npx blueprint adr new -t "Auth pattern" -d "Use JWT sessions." -r "Stateless scaling" \
-c "Auth logic must remain under src/lib/auth/**" --avoid "Direct DB access from middleware"
npx blueprint adr list
npx blueprint adr show ADR-001
npx blueprint adr check
npx blueprint adr check --format=markdown
npx blueprint adr suggest
npx blueprint decide -t "..." -d "..." # alias for adr newDecisions live in .blueprint/decisions/ (status: proposed | accepted | superseded | deprecated). Only accepted ADRs enforce checks. Included in PR comments, blueprint.memory.json, and MCP explain_architectural_decisions.
Domain intelligence
Blueprint infers business domains (payments, auth, analytics, …) from paths, builds ownership stacks (controller → service → repository), detects cross-domain violations and architectural drift, and scores repository health.
node dist/cli/index.js domains
node dist/cli/index.js domain-health
node dist/cli/index.js domain-checkMCP tools: infer_domains, domain_health, explain_domain_boundaries. Domain-aware guidance is included in find_existing_abstractions and verify_and_place_code.
Demo (magic loop)
Run a deterministic demo that includes an existing formatCurrency() utility and verifies a proposed duplicate utility:
npm run demo:magicExpected behavior: advisory guidance suggests reusing an existing abstraction and following placement recommendations.
Project Report
Blueprint can summarize repository architectural memory even before an agent acts:
npx blueprint reportExample output:
Blueprint Report
Framework: Next.js
Files scanned: 42
Symbols indexed: 118
Path aliases: @/*
Placement rules: 4 active
Top reusable abstractions:
- formatCurrency → src/lib/currency.ts
- validateEmail → src/lib/validation.ts
- fetchWithRetry → src/lib/http.ts
Duplicate-risk clusters:
- currency formatting: formatCurrency, formatMoney
- email validation: validateEmail, checkEmailAddress
Recommended actions:
- Reuse src/lib/currency.ts for money formatting
- Keep auth helpers under src/lib/authThis makes Blueprint a repo architecture visibility tool, not only a reactive MCP guardrail.
Policy Check
Run architecture policy validation:
npx blueprint checkblueprint check reports:
forbidden import boundary violations
required placement violations
duplicate-like utility warnings
It exits with a non-zero code when violations are found.
CI mode
Use --ci in GitHub Actions for clean logs (no JSON trailer):
npx blueprint check --ciGitHub Action
- name: Blueprint Architecture Check
run: npx blueprint check --ciA reference workflow lives at .github/workflows/blueprint-check.yml.
Infer rules
Analyze repository structure and import patterns to suggest policies:
npx blueprint infer-rulesExample suggestions:
src/components/**should not importsrc/server/**src/lib/payments/internal/**should stay inside paymentshooks should live under
src/hooksauth helpers should live under
src/lib/auth
Copy suggested policies into blueprint.config.json, then run npx blueprint check --ci.
PR report output
Markdown output for PR comments:
npx blueprint check --format=markdownArchitecture Graph
Build module-level architecture visibility and boundary risk detection:
npx blueprint graphExample sections:
ModulesDependency flowsBoundary risksSuggested policies
This command stores resolved file imports in SQLite, resolves relative and alias imports, and highlights risky boundaries (like components importing server-only modules).
Semantic Architecture Intelligence
Blueprint can detect renamed and semantically equivalent helpers using local MiniLM embeddings.
Enable in blueprint.config.json:
"embeddings": {
"enabled": true,
"model": "Xenova/all-MiniLM-L6-v2",
"hybridWeights": { "heuristic": 0.55, "semantic": 0.45 }
}Then scan:
npx blueprint scan
npx blueprint reportreport includes Semantic duplicate clusters (for example currency formatting helpers with different names).
Duplicate detection uses hybrid scoring (heuristics + path context + semantic similarity). Embeddings are cached per file hash and only regenerated when files change.
Example advisory reasons:
Confidence: HIGH
Reasons:
- similar function intent
- matching parameter structure
- semantic similarity: 0.91MCP tools (V1)
scan_repo: index exported TS/JS symbols into a local SQLite db.find_existing_abstractions: advisory-first ranked reuse suggestions for proposed symbols.suggest_file_placement: advisory placement guidance based on intent + rules.suggest_import_reuse: canonical import reuse suggestion.explain_architecture_boundaries: module graph, dependency flows, and boundary risks.
Compatibility aliases remain available for migration:
find_duplicates->find_existing_abstractionssuggest_import->suggest_import_reuseverify_and_place_code(combined check, advisory-first by default)
Advisory-first mode
Blueprint defaults to "enforcementMode": "advisory" in blueprint.config.json.
In advisory mode, high-confidence issues return guidance instead of hard blocking.
Set "enforcementMode": "enforce" only when teams are ready for strict blocking on high-severity issues.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Vedv7/BLUEPRINT.MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server