Archsteer MCP Server

Architecture governance for AI agents: query the live model, get target patterns, check files.

Remote serverstreamable-httpPython

What is the Archsteer MCP server?

Architecture governance for AI agents: query the live model, get target patterns, check files. The archsteer mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 11 defined tools rather than through you.

What it actually does

AI agents now write code faster than any architect can review, document, or govern it. Docs rot instantly, the real architecture is invisible, structural decisions get made silently, and intended architecture drifts with every edit. ArchSteer is the always-current architecture system of record + governance plane: it derives the real architecture from code, keeps living docs and ADRs auto-built, surfaces every major decision for the architect to ratify, enforces declared intent as code-level fitness functions, and steers AI agents to conform instead of replicating local slop.

Its toolset

Everything the assistant can do here goes through one of these:

  • current_architecture — component/layer counts, conformance/drift, the declared target
  • get_target_pattern — the invariants that apply to a file, before you write to it
  • check_file — whether a file you just edited conforms, without waiting for CI
  • Shipped — cloud control plane (Next.js + Supabase): multi-repo situation room with
  • Later — a VS Code extension (inline diagnostics, status-bar score — the CLI/MCP
  • Pack — Detected by
  • java-spring — pom.xml / build.gradle
  • salesforce — sfdx-project.json / force-app
  • python-service — pyproject.toml / requirements.txt
  • nextjs-app-router — package.json has next, an app/ dir, no express
  • express-to-next — package.json (fallback, or express present)

Adding it to your client

Being a remote server, there is no local install. You register the endpoint with your client, authorise it once, and the tools appear.

When to reach for it

This sits in the developer tooling group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Archsteer's toolset — current_architecture, get_target_pattern, check_file and 8 more — is a fair guide to whether it matches your workflow. It is maintained by einvoice-dev1; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Caveats

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 11 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Archsteer.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the archsteer mcp server does with a few real requests.

Available tools

ToolWhat it does
current_architecturecomponent/layer counts, conformance/drift, the declared target.
get_target_patternthe invariants that apply to a file, *before* you write to it.
check_filewhether a file you just edited conforms, without waiting for CI.
Shippedcloud control plane (Next.js + Supabase): multi-repo situation room with
Latera VS Code extension (inline diagnostics, status-bar score — the CLI/MCP
PackDetected by
java-springpom.xml / build.gradle
salesforcesfdx-project.json / force-app
python-servicepyproject.toml / requirements.txt
nextjs-app-routerpackage.json has next, an app/ dir, no express
express-to-nextpackage.json (fallback, or express present)

How to install the Archsteer MCP server

Or in JSON config directly:

```json
{ "mcpServers": { "archsteer": { "command": "uvx", "args": ["archsteer", "mcp"] } } }

Configuration as documented by the project. Restart the client after saving.

Example prompts to try

  • Use Archsteer to current architecture.
  • Use Archsteer to get target pattern.
  • Use Archsteer to check file.

Frequently asked questions

It connects Archsteer to MCP-compatible AI assistants such as Claude and Cursor, exposing 11 tools (current_architecture, get_target_pattern, check_file, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Archsteer directly.