architecture-pattern-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., "@architecture-pattern-mcpDesign a scalable architecture for a real-time chat application."
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.
architecture-pattern-mcp
An MCP (Model Context Protocol) server that provides architecture design expertise to AI coding agents. Given a requirements string and a domain, it analyses the problem, selects matching architecture patterns (from 40 built-in patterns), generates a concrete architecture design with components, relationships, API contracts, data models, and event contracts, and evaluates it against quality attributes (maintainability, scalability, reliability, security, performance).
Table of Contents
Related MCP server: MarkdownLM MCP Server
โก Quickstart
# 1. Clone
git clone https://github.com/architecture-pattern/architecture-pattern-mcp.git
cd architecture-pattern-mcp
# 2. Add your API key
export GENERATOR_API_KEY=your_key_here
# 3. Start (Docker builds + starts everything)
docker compose -f docker/docker-compose.yml up --build
# 4. Demo
make clientServer starts on streamable-http at http://localhost:8060/mcp (dev compose host port; systemd uses 8050). Then connect your agent below.
๐ Connect Your Agent
Claude Code
# Install (one-time)
uv pip install -e .
# Run as stdio subprocess โ pass API key via env
claude mcp add architecture-pattern \
-e GENERATOR_API_KEY=your_key \
-e GENERATOR_PROVIDER=openai \
-- architecture-pattern-mcp --transport stdioOr add to your project for the whole team:
claude mcp add --scope project architecture-pattern \
-e GENERATOR_API_KEY=your_key \
-- architecture-pattern-mcp --transport stdioOpenCode
OpenCode uses HTTP transport. Start the server first, then configure opencode:
# Terminal 1: start the server
docker compose -f docker/docker-compose.yml up --build
# or locally:
uv run python -m src.main --port 8050
# Terminal 2: add to ~/.config/opencode/opencode.json{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"architecture-pattern": {
"type": "remote",
"url": "http://localhost:8060/mcp"
}
}
}Note:
GENERATOR_API_KEYis read from the server's config file (~/.config/architecture-pattern-mcp/config.json), not from opencode's environment.
Codex CLI
# Install (one-time)
uv pip install -e .Add to ~/.codex/config.toml:
[mcp_servers.architecture-pattern]
command = "architecture-pattern-mcp"
args = ["--transport", "stdio"]
[mcp_servers.architecture-pattern.env]
GENERATOR_API_KEY = "your_key"
GENERATOR_PROVIDER = "openai"Or via CLI:
codex mcp add architecture-pattern \
-e GENERATOR_API_KEY=your_key \
-- architecture-pattern-mcp --transport stdio๐งโ๐ซ SKILL for AI Agents
AI coding agents (Claude Code, OpenCode, Codex CLI) can load a SKILL that teaches them how and when to use this server's tools โ including timeout-aware entry-point selection, output interpretation, and the full workflow recipe.
The SKILL lives in skills/architecture-pattern-mcp/:
skills/architecture-pattern-mcp/
โโโ SKILL.md # Discovery, critical rules, decision guide
โโโ references/
โโโ tools.md # All 9 tool signatures and output schemas
โโโ workflows.md # 4 worked examples, 4 prompts, best practicesFor agents that support file-based skills (OpenCode, Claude Code): point the agent's skill loader at skills/architecture-pattern-mcp/SKILL.md. The skill tells the agent:
Which tool to use based on client type and timeout budget
How to phrase
requirements,domain, andstyleas separate structured argumentsHow to interpret
final_quality_score,attempts > 1, andevaluation.recommendationsWhen to use the async job trio vs
design_architecturedirectly
Use the Tools
All tools accept requirements (free text) and domain (e.g. data-processing, microservices, e-commerce) as arguments. The examples below show the exact tool call shape so you can use them in any MCP client or API consumer.
Try each tool
In Claude Code (or any MCP client), paste the natural-language instruction:
Build a scalable ETL pipeline for IoT sensor data: ingest 10k events/sec
from Kafka, parse JSON, enrich with geolocation from Redis, write to InfluxDB
and S3.Your agent calls design_architecture internally. The server returns a full architecture design: components (Kafka source, JSON parser filter, geolocation enricher, InfluxDB sink, S3 sink), quality attribute scores (scalability: 9.1, maintainability: 8.2, โฆ), and specific recommendations.
Or call tools directly from your agent:
Call analyze_architecture with:
requirements: "Real-time data processing pipeline for 10k events/sec IoT sensor data"
domain: "data-processing"
Call generate_architecture with:
requirements: "ETL pipeline: Kafka โ JSON parse โ Redis geo-enrich โ InfluxDB + S3"
domain: "data-processing"
selected_patterns: ["pipe-and-filter"]
Call evaluate_architecture with:
architecture: { ... paste a design dict here ... }
criteria: "scalability, reliability"
Call list_architecture_patterns() # all 40 patterns
Call list_architecture_patterns(category="messaging") # filter by category
Call get_architecture_pattern(name="event-driven") # full pattern JSONAsync job pattern: submit_architecture_design_job + get_architecture_design_status
ONLY for clients with short request timeouts (Cursor, Claude Desktop, TS-SDK). The default is design_architecture with heartbeat defence. submit_architecture_design_job returns a job_id immediately; poll get_architecture_design_status until done:
# Step 1: start the job
Call submit_architecture_design_job with:
requirements: "ETL pipeline for IoT: Kafka โ JSON โ Redis geo-enrich โ InfluxDB + S3"
domain: "data-processing"
# Step 2: poll every 10-30 seconds
Call get_architecture_design_status with:
job_id: "<job_id from step 1>"
# โ status is "pending" | "running" | "completed" | "failed" | "cancelled"
# When status is "completed", the full design is in result.design
# When status is "failed", the error is in result.errorIn Python (via the MCP HTTP API directly โ see examples/architecture_client_async.py):
import asyncio, aiohttp
SERVER = "http://localhost:8060/mcp"
POLL_EVERY = 15 # seconds
async def main():
async with aiohttp.ClientSession() as sess:
# Start
async with sess.post(SERVER, json={
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "submit_architecture_design_job",
"arguments": {
"requirements": "ETL pipeline for IoT: Kafka โ JSON โ Redis โ InfluxDB + S3",
"domain": "data-processing",
}
},
"id": 1
}) as resp:
job_id = (await resp.json())["result"]["content"][0]["data"]["job_id"]
print(f"Job started: {job_id}")
# Poll
while True:
await asyncio.sleep(POLL_EVERY)
async with sess.post(SERVER, json={
"jsonrpc": "2.0",
"method": "tools/call",
"params": {"name": "get_architecture_design_status", "arguments": {"job_id": job_id}},
"id": 2
}) as resp:
result = (await resp.json())["result"]["content"][0]["data"]
print(f" status={result['status']}")
if result["status"] in ("completed", "failed", "cancelled"):
break
print(result.get("result", result)) # full design when completedSee examples/architecture_client_async.py for the complete runnable example. Run it with:
docker compose -f docker/docker-compose.yml up --build # Terminal 1
make client-async # Terminal 2Explore the pattern catalog
Call list_architecture_patterns() with no filters to see all patterns.Or get details on a specific pattern:
Show me details about the event-driven architecture pattern.๐ ๏ธ Tools at a Glance
Tool | Description |
| Analyse requirements and domain โ recommended style, patterns, quality metrics. Long-running (LLM call). Not idempotent. |
| Generate an architecture design from requirements and selected patterns. Long-running (LLM call). Not idempotent. |
| Score an existing design against quality attributes. Long-running (LLM call). Not idempotent. |
| Default tool for full architecture design (analyse โ generate โ evaluate โ refine, up to 3 attempts). Long-running (5โ10 min); use this unless your client has a short request timeout. |
| Start a background design job and return a |
| Poll job status. Returns the current status, progress message, and the full design output when |
| Cancel a running job (best-effort; takes effect at the next pipeline stage boundary; may take up to one LLM call). |
| List all 40 patterns; filter by |
| Get full JSON for a specific pattern by name |
Domain and Style are structured parameters โ pass them as separate tool arguments, not embedded in the requirements text.
Example prompts:
Build a scalable distributed system for processing IoT sensor data with
100k events per second throughput, written in Python, deployed on Kubernetes.Design an architecture for an e-commerce platform handling flash-sales events.
Domain: e-commerce. Style: microservices.Show me details about the blackboard pattern.Call design_architecture with:
requirements: "ETL pipeline for IoT: Kafka โ JSON โ Redis geo-enrich โ InfluxDB + S3"
domain: "data-processing"๐ฌ Prompts
This server also exposes four user-invoked workflow prompts (slash commands in MCP clients). Unlike tools, the LLM does not autonomously invoke prompts โ the user selects one and fills in its arguments. Each prompt encodes a tested tool-orchestration recipe.
Prompt | Args | What it does |
| requirements* | Full analyze โ generate โ evaluate pipeline |
|
| Live catalog discovery with embedded pattern names |
|
| Guide evaluation criteria + finding prioritisation |
| style_a*, style_b*, requirements* | Two designs side-by-side; ~2ร token cost |
* = required argument
Tool-only clients
Clients that only support the tools protocol (no native prompts/list or prompts/get) can access all four workflow prompts via the generated list_prompts and get_prompt tools, which route through the server's middleware chain exactly as native prompt calls do.
๐ Pattern Catalog
Via MCP tools (recommended โ works in all clients)
list_architecture_patterns() # all 40 patterns
list_architecture_patterns(category="messaging") # filter by category
list_architecture_patterns(domain="microservices") # filter by domain
get_architecture_pattern(name="event-driven") # full pattern JSONValid category values: messaging, structural, cloud, data, ai_cognitive, specialized, api_gateway, coordination, dataflow, presentation.
Via MCP resources
mcp_list_resources(server="architecture-pattern")
mcp_read_resource(server="architecture-pattern", uri="pattern://microservices")Pattern JSON structure
Each pattern includes: name, category, context, benefits, tradeoffs, quality_attributes (scalability/maintainability/reliability/security/performance/simplicity, scores 1โ10), suitable_domains, component_types, technology_stack, design_principles, best_practices.
Install Alternatives
Docker (manual)
# Build the image
make docker-build
# Run with your API key
MINIMAXAI_API_KEY=your_key docker compose -f docker/docker-compose.yml up -dLocal Development (uv)
Prerequisites: Python 3.12+, uv
# Install
make install
# Configure
cp config/config.json ~/.config/architecture-pattern-mcp/config.json
# Edit ~/.config/architecture-pattern-mcp/config.json and set your GENERATOR_API_KEY
# Run the server
uv run python -m src.main --transport stdio # for Claude Code / Codex
uv run python -m src.main --port 8050 # for OpenCode (HTTP, default)Or use the installed console script (after make install):
architecture-pattern-mcp --transport stdioThe TEI embedder (Qwen3-Embedding-0.6B) is required for domain-scoped pattern retrieval. Without it, the server falls back to the default pattern. Docker compose starts it automatically; local users must run it separately on port 8080.
The retrieval indexes (FAISS + BM25) are built at server startup so a misconfigured or unreachable TEI sidecar prevents startup (fail-fast) rather than breaking the user's first design request. Docker compose's service_healthy dependency ordering guarantees TEI is ready before the app starts.
Configuration
config.json
The server reads ~/.config/architecture-pattern-mcp/config.json (override with --config-path):
{
"generator": {
"provider": "openai",
"config": {
"model": "gpt-4o-mini",
"base_url": "https://api.openai.com/v1",
"api_key": "{env:GENERATOR_API_KEY}",
"temperature": 0.1,
"top_p": 1.0,
"top_k": 20
}
},
"embedder": {
"provider": "tei",
"config": {
"base_url": "http://127.0.0.1:8080"
}
},
"retrieval": {
"bm25_top_k": 0,
"dense_top_k": 0,
"top_k_patterns": 5,
"min_quality_score": 50.0
},
"pattern_directory": "~/.config/architecture-pattern-mcp/pattern",
"transport": "streamable-http",
"host": "0.0.0.0",
"port": 8050,
"logging_level": "INFO",
"logging_format": "json"
}{env:VAR:-default} syntax expands environment variables at load time.
Generator LLM (LlamaIndex LiteLLM)
The generator LLM is accessed through the LlamaIndex LiteLLM integration (llama-index-llms-litellm). All provider settings therefore follow LiteLLM's model syntax: <provider>/<model> (e.g. openai/gpt-4o-mini, anthropic/claude-sonnet-4-5, openrouter/minimax/minimax-m2).
The server composes the LiteLLM model string from your configuration as generator.provider + generator.config.model:
Config / env | Example | Resulting LiteLLM model string |
|
|
|
|
|
|
|
|
|
If the configured model already contains a provider prefix (e.g. openai/gpt-4o-mini), that prefix is stripped and replaced by the configured provider.
Provider list, model names, and the exact
<provider>/<model>syntax: LiteLLM Providers documentationCustom/OpenAI-compatible endpoints (proxies, vLLM, Ollama, โฆ): set
GENERATOR_BASE_URL(generator.config.base_url) โ it is passed as the LiteLLMapi_baseGENERATOR_API_KEYis passed as the LiteLLMapi_key;temperature,top_p,top_k, andstreammap to the corresponding LiteLLM parameters
Key environment variables
Variable | Default | Description |
| (required) | API key for your LLM provider (passed to LiteLLM as |
|
| LiteLLM provider prefix: |
|
| API base URL (passed to LiteLLM as |
|
| Model name; final model string is |
|
| Sampling temperature |
|
| Top-p sampling |
|
| Top-k sampling |
|
| Enable streaming responses |
|
| Embedder provider |
|
| TEI embedder URL |
|
| Embedding batch size |
| (empty) | Query instruction prefix |
| (empty) | Text instruction prefix |
|
| BM25 stage-1 recall cap (0=full corpus) |
|
| Dense stage-1 recall cap (0=full corpus) |
|
| Stage-1 fusion leg weight on the dense leg. Pairs with |
|
| Stage-1 fusion leg weight on the BM25 leg. See |
|
| Number of patterns to select |
|
| Relevance floor on the rank_fusion blend value (range [0, 2/60] โ [0, 0.033]). Default 0.0 (gate disabled). Values above the blend maximum are rejected at startup. |
|
| Rerank top N (slug-cut after CE) |
|
| Use lean response schema |
|
| Min analysis score for style recommendation |
|
| Server-side reasoning MCP integration (see Structured Reasoning) |
|
| Subprocess spawn timeout per reasoning tool |
|
| Per-thought tool-call timeout |
|
| Hard cap on reasoning steps per phase |
|
| Silence reasoning-subprocess stderr (ASCII progress boxes, |
|
| Fail server startup when a reasoning tool is unreachable |
| (embedded) | JSON list command for shannonthinking (e.g. |
| (embedded) | JSON list command for code-reasoning |
|
| Weight on analysis score in blend |
|
| Weight on fusion score in blend |
|
| Weight smoothing alpha |
|
| Log phase timings at INFO level |
|
| Max design loop attempts |
|
| Early-stop quality threshold |
| (default reranker URL) | TEI reranker endpoint (host:port); model is fixed to |
|
| Reranker timeout (seconds) |
|
| Max texts per TEI /rerank request; must be โค min(MAX_CLIENT_BATCH_SIZE, MAX_CONCURRENT_REQUESTS) of the reranker sidecar. HybridPatternRetriever chunks large pools automatically. |
|
| Pattern files directory |
|
| Max self-healing retry attempts |
|
| Retry on validation failure |
Structured Reasoning (shannonthinking / code-reasoning)
Before each LLM phase call (ANALYZE / GENERATE / EVALUATE / RETRY), the server
optionally runs a bounded ThoughtGenerator loop: it authors each reasoning
step with the generator's own LLM (LlamaIndex LiteLLM; one completion per
step) and submits it to the
shannonthinking and/or
code-reasoning MCP servers โ
structured thinking scratchpads that validate, number, and record each step.
The resulting trace is injected into the phase prompt as a
<reasoning_context> block. Contract: each thought = 1 LLM completion + 1
MCP tool call, capped by REASONING_MAX_TOTAL_STEPS (default 8).
Key properties:
Embedded in Docker โ the
build-mcpsstage bakes both npm packages (server-shannon-thinking@0.1.1,@mettamatt/code-reasoning@0.8.1) into the image at/usr/local/lib/node_modules/...; the runtime invokes them directly vianode(no network, no npx).Auto-fallback to npx outside Docker โ when the embedded entry points are missing, the client falls back to
npx -y <pkg>(first call downloads).Process-per-call isolation โ each tool call runs in a fresh subprocess (
keep_alive=False); nothing persists between calls.Silent per-call degradation โ any spawn/timeout/tool failure logs a WARNING and the phase proceeds with a degraded in-prompt thinking scaffold (decompose โ classify โ calibrate โ resolve โ verify); it never raises.
Loud startup โ the lifespan health-check probes both tools and logs an ERROR (with resolution hints) if one is unreachable; set
REASONING_FAIL_FAST=trueto make startup fail instead.Trace caching โ ANALYZE and GENERATE traces are computed once per design request and reused across design-loop attempts.
Opting out / tuning
export REASONING_ENABLED=false # disable entirely
export REASONING_FAIL_FAST=true # refuse to start with broken MCPsLocal (non-Docker) development needs Node.js; either install the packages
globally (npm install -g server-shannon-thinking @mettamatt/code-reasoning)
or let the npx fallback download them on first use.
Latency note: expect roughly +1โ6 s per reasoning step. Worst case adds a couple of minutes per design run; the trace cache keeps typical overhead well below that.
Set LOGGING_LEVEL=DEBUG to capture the authored thought and tool response
for every per-step reasoning call. Docker/systemd stacks default to INFO;
export LOGGING_LEVEL=DEBUG before make docker-up.
| ARCHITECTURE_PATTERN_JOBS_DB | ~/.config/architecture-pattern-mcp/jobs.db | SQLite path for async job trio. Override for test isolation |
| TASKS_HEARTBEAT_ENABLED | true | Emit progress notifications during long tool calls |
| TASKS_HEARTBEAT_INTERVAL_SECONDS | 30 | Heartbeat interval in seconds (keep below client idle timeout) |
| TRANSPORT | streamable-http | Transport mode: stdio, streamable-http |
| HOST | 0.0.0.0 | HTTP bind host |
| PORT | 8050 | HTTP bind port |
| LOGGING_LEVEL | INFO | Logging level |
| LOGGING_FORMAT | json | Logging format: json, text |
| CONFIG_PATH | ~/.config/architecture-pattern-mcp/config.json | Config file path |
CLI flags
Flag | Description |
| Override transport mode |
| Override HTTP bind host (default: 0.0.0.0) |
| Override HTTP port (default: 8050) |
| Path to config file |
| Run health check and exit |
Extending with Custom Patterns
Pattern files are loaded from ~/.config/architecture-pattern-mcp/pattern/ (configurable via PATTERN_DIRECTORY). Drop a JSON file alongside the 40 built-in patterns.
Minimal pattern structure:
{
"category": "structural",
"name": "my-custom-pattern",
"context": "Describe when this pattern applies.",
"benefits": ["Benefit 1", "Benefit 2"],
"tradeoffs": ["Tradeoff 1"],
"quality_attributes": {
"scalability": 7,
"maintainability": 8,
"reliability": 7,
"security": 6,
"performance": 7,
"simplicity": 5
}
}Required fields: category, name, context, benefits, tradeoffs, quality_attributes.
Valid category values: messaging, structural, cloud, data, ai_cognitive, specialized, api_gateway, coordination, dataflow, presentation.
Full JSON Schema with all enums: docs/pattern-schema.json
Long-running tools & timeouts
design_architecture (and to a lesser extent analyze_architecture, generate_architecture, evaluate_architecture) run multi-stage LLM pipelines that can take 5โ10 minutes per call. This is inherent to the workload, not a bug: the generator LLM must process a large input payload โ the selected pattern definitions from the 36-pattern catalog, your requirements, and the full output of every previous stage โ and produce a large, strictly structured JSON document (components, relationships, API contracts, data models, event contracts, quality scores) one token at a time. The design_architecture pipeline repeats generate โ evaluate up to three times, so a single call can comprise 9+ LLM round trips.
The timeout problem
MCP clients (AI coding agents, MCP SDKs) sit between the server and the LLM. Many of them implement a client-side idle timeout: if no data is received on the HTTP connection for some period (typically 30โ120 seconds), the client aborts the request. The server is still working โ the LLM is still generating โ but the client closes the connection and reports a timeout error to the agent.
This is a client-side behaviour, not a server-side one. The server processes the full request correctly; the client simply gives up before the response arrives.
Affected clients (hardcoded short timeouts):
Client | Timeout | Notes |
Claude Desktop (TS-SDK) | 60 s | Hardcoded; does not reset on progress notifications |
Cursor (TS-SDK) | 60 s | Same as Claude Desktop |
Other TS-SDK based agents | varies | Most cap at 60โ120 s |
These clients cannot be reconfigured to accept longer timeouts โ the timeout is baked into the SDK.
Clients covered by the heartbeat defence:
Client | Timeout | Defence |
Claude Code | ~300 s | Heartbeat every 30 s resets idle timer |
OpenCode | ~300 s | Heartbeat every 30 s resets idle timer |
Codex CLI | ~300 s | Heartbeat every 30 s resets idle timer |
Other HTTP-transport agents | varies | Most reset on any received data |
Works for these because their idle timers are reset by any incoming data โ the heartbeat progress notifications sent from a parallel async task on the server are received by the client, resetting its clock.
The heartbeat defence (applied by default)
Every long-running tool emits progress notifications from a parallel coroutine every 30 seconds (configurable via TASKS_HEARTBEAT_INTERVAL_SECONDS). As long as the client resets its idle timer on any received data, the request stays alive for the full duration of the pipeline.
TS-SDK clients (Claude Desktop, Cursor, etc.) do not reset their timeout on progress notifications.
The async job trio (for timeout-constrained clients)
For full control and compatibility with timeout-limited clients, three tools provide a durable job handle:
submit_architecture_design_job(requirements, domain, override_style) โ job_id
get_architecture_design_status(job_id) โ {status, result, error}
cancel_architecture_design(job_id) โ {cancelled, status}submit_architecture_design_job returns a job_id in milliseconds. The pipeline runs in a background task. Poll get_architecture_design_status(job_id) every 10โ30 seconds. When status is completed, the full design is in the result field. Cancellation is best-effort โ the job exits at the next pipeline stage boundary.
This is the only fix that works for TS-SDK clients (Claude Desktop, Cursor).
The job store is SQLite at ~/.config/architecture-pattern-mcp/jobs.db (configurable via ARCHITECTURE_PATTERN_JOBS_DB).
Bypassing client timeouts entirely: make client
The example client in examples/architecture_client.py is a direct Python HTTP client โ it is not an MCP agent. It calls the server over HTTP without any MCP SDK, and therefore has no client-side idle timeout. It makes a single blocking request and waits for the full response, regardless of how long it takes.
# Start the server (from project root)
docker compose -f docker/docker-compose.yml up --build
# In another terminal, run the example client
make clientmake client is a development/demo tool. It demonstrates that the server correctly completes long requests โ the timeout issue is purely a client-side problem. For production use with MCP agents, covers the majority of clients; async job trio is the universal fallback.
Troubleshooting
Server starts but tools are not visible
Check the agent's MCP connection: Claude Code
/mcp, OpenCodeopencode mcp list, Codexcodex mcp listVerify the server process started: compose logs should show
MCPArchitectServer initializedConfirm the TEI embedder is healthy:
curl http://127.0.0.1:8080/healthinside the container
"Connection refused" or timeout errors
The server waits for the TEI embedder to become healthy:
docker compose -f docker/docker-compose.yml logs pattern-teiLLM provider errors (502 / 401)
Confirm
GENERATOR_API_KEYis set and not expiredVerify
GENERATOR_BASE_URLmatches your provider's endpointIf using a proxy, check reachability from inside the container
Pattern JSON files not loading
Files must have
.jsonextensionRequired fields:
category,name,context,benefits,tradeoffs,quality_attributesValidate against
docs/pattern-schema.json
Building & Development
Common make targets:
Target | Description |
| Install package in editable mode with dev dependencies |
| Run ruff linting |
| Auto-fix lint issues and format |
| Run pyright type checking |
| Run unit tests with uv (tests/unit/) |
| Run the example MCP client demo (requires server running) |
| Build the MCP server Docker image |
| Build MCP server + TEI embedder images |
| Push image to Docker Hub + GHCR (version + latest) |
| Build and start all services |
| Stop all services |
Development workflow: |
make install # First-time setup
make lint typecheck # Before pushing
make docker-build-all # Build both images (first time and after code changes)
make docker-up # Start services
make docker-logs-follow # Watch logs
make docker-down # StopPublishing
All three images are published to two registries simultaneously:
Image | Docker Hub | GHCR | Tags |
MCP server |
|
|
|
TEI embedder |
|
|
|
TEI reranker |
|
|
|
All three images share the same $(DOCKER_TAG) (the version from pyproject.toml), so tei:1.0.3 always ships with mcp:1.0.3. Blob deduplication keeps re-tagging unchanged TEI images cheap.
Bandwidth note: the TEI embedder image is ~5 GB (ONNX fp32 weights baked in). First push to each registry is ~5 GB upload. Subsequent pushes are incremental โ only changed layers are transferred.
Prerequisites
Docker Hub โ already authenticated locally (docker login).
GitHub Container Registry โ requires a classic PAT with write:packages scope. 2FA is not an issue โ PATs bypass it. After login the token is discarded; the credential persists in ~/.docker/config.json until you log out.
Publish (one-time setup + per-session)
# 1. Login to GHCR (interactive โ paste token at the password prompt)
docker login ghcr.io -u olk
# 2. Build and push all three images (MCP + TEI embedder + TEI reranker)
# The umbrella target builds the MCP image, tags it, pushes it, creates the git tag,
# then builds and pushes each TEI image in sequence.
make docker-publish-all
# 3. Logout from GHCR immediately after publishing
# (removes the ghcr.io credential from ~/.docker/config.json)
docker logout ghcr.ioOn subsequent publishes repeat steps 1โ3. If your PAT has expired, generate a new one at the link above.
First push โ set packages public (GHCR only)
GHCR packages default to private. After the first make docker-publish-all, flip all three packages to public:
Package | Settings URL |
MCP server |
|
TEI embedder |
|
TEI reranker |
|
Set each to Public and save.
Partial failure recovery
If the push fails mid-way (e.g., GHCR auth was not configured), Docker Hub layers are already uploaded. After fixing auth, re-running make docker-publish-all is safe โ each registry reports a cache hit for already-uploaded layers and completes the remaining push. For targeted retries, individual images can be pushed with make docker-publish-tei or make docker-publish-tei-rerank.
systemd Service (Linux)
The server can run as a systemd service on any systemd-based Linux host. It starts the Docker Compose stack automatically at boot.
File layout
The systemd/ directory contains three files:
File | Purpose |
| The systemd unit |
| Production compose variant (no |
| Full runbook with install, verify, and troubleshooting |
The production compose file is a deployment variant of docker/docker-compose.yml:
it has no build: sections (images must be pre-built), uses absolute paths, and
lives under /etc/architecture-pattern-mcp/ on the host. The systemd-managed
project uses the distinct name apmcp-systemd so it can coexist with the dev
compose if needed.
TEI sidecars are NOT defined in this stack โ the
pattern-tei-embedembedder andpattern-tei-rerankreranker containers live in the sharedpattern-tei-infrastack. This stack owns thepattern-tei-sharedDocker network and exposes the sidecars athttp://pattern-tei-embed:8080/v1(embedder) andhttp://pattern-tei-rerank:8080(reranker). The systemd MCP stack joins that network and reaches them by those DNS names.Prerequisite โ one-time TEI infra setup:
# Clone the infra stack (if not already on the host) git clone https://github.com/olk/pattern-tei-infra.git ~/pattern-tei-infra # Install and enable the pattern-tei-infra systemd unit sudo install -m 644 ~/pattern-tei-infra/pattern-tei-infra.service \ /etc/systemd/system/ sudo systemctl daemon-reload sudo systemctl enable --now pattern-tei-infra.service # Wait ~2 min for the TEI sidecars to become healthyStart
architecture-pattern-mcp.serviceonly AFTERpattern-tei-infra.serviceisactive (running). Seepattern-tei-infra/README.mdfor full details.
Prerequisites
systemd-based Linux host with Docker (
docker compose version).<user>is in thedockergroup.Both images pre-built locally (
make docker-build-allfrom the repo).Shared TEI infra stack installed and enabled (see tei-infra README).
Install
# 0. Install + enable shared TEI infra (once)
sudo install -m 644 {HOME}/pattern-tei-infra/pattern-tei-infra.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now pattern-tei-infra.service
# 1. Build images (once)
make docker-build-all
# 2. Deploy /etc/architecture-pattern-mcp/
sudo install -d /etc/architecture-pattern-mcp/config
sudo install -m 644 systemd/docker-compose.yml /etc/architecture-pattern-mcp/
sudo install -m 644 ~/.config/architecture-pattern-mcp/config.json /etc/architecture-pattern-mcp/config/
# 3. Create the .env file (root:docker 640) and edit it.
# 640 root:docker โ not 600 root:root โ so the systemd service
# running as User=graemer (a member of the `docker` group) can read this
# file when docker compose auto-loads it. The `docker` group is
# effectively privileged; this is the standard trade-off for non-root
# systemd services that manage Docker containers.
sudo install -o root -g docker -m 640 /dev/null /etc/architecture-pattern-mcp/.env
sudo $EDITOR /etc/architecture-pattern-mcp/.env
# Contents:
# MINIMAXAI_API_KEY=sk-...
# COMPOSE_PROJECT_NAME=apmcp-systemd
# MCP_HOST_PORT=8050 # change to avoid port conflicts with other MCP servers
# 4. Install and enable the service.
sudo install -m 644 systemd/architecture-pattern-mcp.service /etc/systemd/system/
sudo systemctl daemon-reload
sudo systemctl enable --now architecture-pattern-mcp.serviceVerify
systemctl status shows active (exited) within seconds, but the containers
take up to ~2 minutes to become healthy (TEI embedder start_period: 120s).
The unit does not wait for healthchecks.
systemctl status architecture-pattern-mcp
journalctl -u architecture-pattern-mcp -n 50
docker compose -p apmcp-systemd -f /etc/architecture-pattern-mcp/docker-compose.yml ps
curl -fsS http://localhost:${MCP_HOST_PORT:-8050}/healthDay-to-day
sudo systemctl start|stop|restart|reload architecture-pattern-mcp
journalctl -u architecture-pattern-mcp -n 200 -f
docker compose -p apmcp-systemd -f /etc/architecture-pattern-mcp/docker-compose.yml logs -fUpdating the stack
make docker-build-all # rebuild both images
sudo systemctl reload architecture-pattern-mcp # recreate containersUninstall
sudo systemctl disable --now architecture-pattern-mcp.service
sudo rm /etc/systemd/system/architecture-pattern-mcp.service
sudo systemctl daemon-reload
sudo rm -rf /etc/architecture-pattern-mcpFor full troubleshooting, networking details, and the coexistence guide, see
systemd/README.md.
License
MIT License. See LICENSE.
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.
Related MCP Connectors
Multi-agent AI pipeline that generates professional Solution Architecture Documents.
Design intelligence for coding agents: audits, design systems, and a taste profile agents consult.
AI Agent with Architectural Memory. Impact analysis (free), tests and code from the graph (pro).
AI-powered spec-to-task decomposition and execution orchestration for coding agents.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceAssists AI developers with intelligent requirement analysis and architecture design through guided clarification questions, branch-aware management, and automated architecture generation with persistent storage.133MIT

MarkdownLM MCP Serverofficial
FlicenseAqualityCmaintenanceProvides a persistent memory and governance layer that allows AI coding agents to query documented architecture rules and validate code against team standards. It enables agents to verify compliance across categories like security and testing before suggesting changes to ensure consistency across development sessions.317- AlicenseAqualityDmaintenanceAn architecture consulting server that reviews multi-agent systems against a knowledge graph of patterns derived from expert literature. It provides grounded recommendations with chapter citations, maturity scoring, and interactive architecture diagrams to identify and fix structural gaps.175AGPL 3.0
- AlicenseAqualityDmaintenanceProvides design pattern templates and anti-pattern guidance to AI coding agents for correct pattern implementation.2MIT
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/olk/architecture-pattern-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server