Blueprint
Blueprint is an MCP server for generating and visualizing C4 software architecture diagrams, scanning codebases, and providing C4 reference documentation.
Create C4 Diagrams
Usecreate_c4_diagramto generate context, container, component, deployment, and dynamic diagrams from structured JSON (elements, relationships, boundaries). Output in Mermaid (default) or PlantUML, with optional SVG rendering via Kroki (supports self-hosted instance).Scan Codebases
Analyze a project withscan_codebaseto get a structural overview: detected language, framework, dependencies, entry points, config files, and directory tree (depth configurable).C4 Reference
Look up built-in C4 model documentation usingget_c4_referencefor element types, diagram types, relationships, or all topics.AI Assistant Friendly
Integrates via MCP; describe architectures in natural language or call tools directly with JSON.Simple Setup
Uses uv for dependency management; no manual virtual environment needed.
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., "@Blueprintcreate a C4 context diagram for my e-commerce system"
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
An MCP server for generating and visualizing C4 software architecture diagrams.
What is Blueprint?
Blueprint is a Model Context Protocol (MCP) server that enables AI assistants to create C4 architecture diagrams. It provides three tools:
Tool | Purpose |
| Build C4 diagrams from structured element/relationship data |
| Get a structural overview of a project (language, deps, entry points) |
| C4 model documentation (element types, diagram types, relationships) |
Related MCP server: AI Charts
What are C4 Diagrams?
The C4 model is a lean graphical notation technique for modelling software architecture. It uses a hierarchical set of four diagrams at different abstraction levels:
Context (Level 1) — The big picture: your system, its users, and the external systems it interacts with. Use this to communicate with non-technical stakeholders.
Container (Level 2) — Zooms into a system to show the high-level technical building blocks (web apps, mobile apps, databases, message brokers) and how they interact.
Component (Level 3) — Zooms into a container to show its major structural components (services, repositories, controllers, etc.) and their responsibilities.
Code (Level 4) — Optional: UML class diagrams for individual components. Blueprint does not generate this level.
Blueprint also supports Deployment diagrams (how containers are deployed to infrastructure) and Dynamic diagrams (runtime interactions and data flow between elements).
How to Create C4 Diagrams
There are two ways to direct Blueprint to generate a diagram:
Option 1: Describe Your Architecture in Conversation
Simply describe your system to the AI assistant in natural language. The LLM will extract the relevant C4 elements and relationships, then call create_c4_diagram on your behalf. For example:
"I need a context diagram for an e-commerce platform. There's a customer who browses products and places orders through a web application. The web app talks to a payment service and an inventory database."
The assistant will translate this into the structured JSON that Blueprint expects and return a diagram.
Option 2: Call the Tool Directly with Structured Data
If you prefer precise control, ask the LLM to call create_c4_diagram with explicit JSON. First, optionally use scan_codebase to get a project overview, or get_c4_reference to look up valid element types. Then create the diagram:
{
"diagram_type": "context",
"title": "My System",
"elements": [
{"type": "Person", "alias": "user", "label": "User", "description": "A system user"},
{"type": "System", "alias": "myapp", "label": "My Application", "description": "The main system"}
],
"relationships": [
{"source": "user", "target": "myapp", "label": "Uses", "technology": "HTTPS"}
],
"output_format": "mermaid"
}Supported diagram types: context, container, component, deployment, dynamic
Use boundaries (EnterpriseBoundary, SystemBoundary, ContainerBoundary) to visually group related elements.
Rendered SVG Output
To get a rendered SVG image alongside the source code, set render_image to true:
{
"diagram_type": "context",
"title": "My System",
"elements": [
{"type": "Person", "alias": "user", "label": "User"},
{"type": "System", "alias": "myapp", "label": "My Application"}
],
"relationships": [
{"source": "user", "target": "myapp", "label": "Uses"}
],
"output_format": "mermaid",
"render_image": true
}When render_image is true, the tool returns both the diagram source code and the rendered SVG. SVG is vector-based — it scales to any size without quality loss and renders inline in VS Code, GitHub, and most markdown editors. Rendering is powered by Kroki — no local dependencies required. If rendering fails, the source code is still returned with an error message.
To use a self-hosted Kroki instance, set the BLUEPRINT_KROKI_URL environment variable (defaults to https://kroki.io).
Quick Start
Blueprint uses uv for zero-config setup — no manual virtual environment needed.
# Install uv (if not already installed)
# macOS / Linux
curl -LsSf https://astral.sh/uv/install.sh | sh
# Windows
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
# Start the MCP server (dependencies are installed automatically)
uv run blueprint
# Run tests (includes dev dependencies)
uv run --extra dev pytestMCP Client Configuration
Add to your MCP client settings:
{
"mcpServers": {
"blueprint": {
"command": "uv",
"args": ["run", "blueprint"]
}
}
}Usage
Scan a Codebase
Use scan_codebase to get a quick structural overview before diagramming:
{
"project_path": "/path/to/project",
"max_depth": 3
}Returns project structure, detected language/framework, dependencies, and entry points.
Look Up C4 Reference
Use get_c4_reference to retrieve documentation on valid element types, diagram types, and relationships:
{
"topic": "all"
}Valid topics: elements, diagrams, relationships, all.
Output Formats
Format | Source code | Rendered SVG |
Mermaid (default) | ✅ Inline in VS Code, GitHub, markdown editors | ✅ Via Kroki |
PlantUML | ✅ Full C4-PlantUML macro support | ✅ Via Kroki |
Development
# Run tests
uv run --extra dev pytest
# Run tests with verbose output
uv run --extra dev pytest -vLicense
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseBqualityAmaintenanceAn MCP server that generates beautiful Excalidraw architecture diagrams with perfect auto-layout, stateful editing, and architecture-aware component styling.Last updated24139MIT
- Alicense-qualityDmaintenanceAn MCP server that enables AI assistants to programmatically create and manage flowcharts, ERDs, and swimlane diagrams. It provides tools for manipulating diagram structures, performing auto-layouts, and exporting to Mermaid or Markdown formats.Last updated8MIT
- AlicenseAqualityDmaintenanceAn MCP server that generates professional infrastructure diagrams using the Python diagrams DSL, with first-class Azure support and GitHub Copilot integration for natural language diagram generation.Last updated4MIT
- Alicense-qualityCmaintenanceAn MCP server that enables AI agents to manage STAR-pattern architecture diagrams, creating, updating, listing, and building interactive viewers via tool calls.Last updatedMIT
Related MCP Connectors
Driflyte MCP server which lets AI assistants query topic-specific knowledge from web and GitHub.
MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.
MCP server for generating rough-draft project plans from natural-language prompts.
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- 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/ColOfAbRiX/blueprint-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server