Blueprint
БесплатноНе проверенBlueprint is an MCP server that enables AI assistants to create C4 software architecture diagrams from structured data.
Описание
Blueprint is an MCP server that enables AI assistants to create C4 software architecture diagrams from structured data.
README
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 |
|---|---|
create_c4_diagram |
Build C4 diagrams from structured element/relationship data |
scan_codebase |
Get a structural overview of a project (language, deps, entry points) |
get_c4_reference |
C4 model documentation (element types, diagram types, relationships) |
Quick Start
# Create virtual environment
python -m venv .venv
source .venv/bin/activate # or .venv\Scripts\activate on Windows
# Install
pip install -e ".[dev]"
# Run tests
pytest
# Start the MCP server
python -m blueprint.server
MCP Client Configuration
Add to your MCP client settings:
{
"mcpServers": {
"blueprint": {
"command": "python",
"args": ["-m", "blueprint.server"],
"cwd": "/path/to/blueprint"
}
}
}
Usage
Create a C4 Context Diagram
The LLM discusses architecture with the user, then calls create_c4_diagram:
{
"diagram_type": "context",
"title": "My System",
"elements": [
{"type": "Person", "alias": "user", "label": "User", "description": "System user"},
{"type": "System", "alias": "app", "label": "My App", "description": "The main application"}
],
"relationships": [
{"source": "user", "target": "app", "label": "Uses", "technology": "HTTPS"}
],
"output_format": "mermaid"
}
Scan a Codebase
{
"project_path": "/path/to/project",
"max_depth": 3
}
Returns project structure, detected language/framework, dependencies, and entry points.
Output Formats
- Mermaid (default) — Renders inline in VS Code, GitHub, and many markdown editors
- PlantUML — Full C4-PlantUML macro support, requires external renderer
Development
# Install with dev dependencies
pip install -e ".[dev]"
# Run tests
pytest
# Run tests with verbose output
pytest -v
License
MIT
Установка Blueprint
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/ColOfAbRiX/blueprint-mcpFAQ
Blueprint MCP бесплатный?
Да, Blueprint MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для Blueprint?
Нет, Blueprint работает без API-ключей и переменных окружения.
Blueprint — hosted или self-hosted?
Self-hosted: сервер запускается локально на твоей машине командой из раздела установки.
Как установить Blueprint в Claude Desktop, Claude Code или Cursor?
Открой Blueprint на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare Blueprint with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
