Labsco
archcore-ai logo

Archcore MCP

β˜… 52

from archcore-ai

Local stdio MCP server that lets AI coding agents read and maintain structured architecture, rules, and decisions directly from your repository.

πŸ”₯πŸ”₯πŸ”₯βœ“ VerifiedFreeAdvanced setup

Archcore CLI

Archcore is a git-native context layer for AI coding agents.

It ships as a CLI and a local stdio MCP server, so any MCP-compatible coding agent can read and write your repo context through standard tools. Works across Claude Code, Cursor, GitHub Copilot, Gemini CLI, Codex CLI, OpenCode, Roo Code, and Cline.

See it work

That context came from .archcore/ β€” typed Markdown documents versioned in Git, served to any agent through MCP tools and session hooks.

archcore demo

What changes

❌ Without Archcore

Every session starts from zero. The agent:

  • guesses your architecture and breaks your conventions
  • duplicates logic that already exists
  • re-litigates decisions your team already made
  • needs the same context re-explained in every chat

βœ… With Archcore

Your decisions, rules, and conventions live in Git as structured context. The agent:

  • loads the applicable decisions and rules at session start
  • puts code where your architecture says it belongs
  • respects the ADRs, specs, and rules already in the repo
  • records new decisions as durable context β€” reviewable in PRs, portable across agents

The agent stops guessing and starts following the system.

Get started in 60 seconds

curl -fsSL https://archcore.ai/install.sh | bash    # macOS / Linux
cd your-project && archcore init

archcore init scaffolds .archcore/, detects your coding agents, and wires up hooks and MCP for them.

Then open your agent and say:

"We're using PostgreSQL for primary storage. Record this decision."

Done β€” there is now a structured ADR in .archcore/ that every future session, in any agent, will see.

On Windows: irm https://archcore.ai/install.ps1 | iex. For WSL, go install, and building from source, see Install methods below or the full install guide.

Works with your agent

The CLI is itself a local stdio MCP server β€” one integration surface for every MCP-compatible agent. Hooks add session-start context where the agent supports them.

AgentHooksMCP
Claude Codeyesyes
Cursoryesyes
Gemini CLIyesyes
GitHub Copilotyesyes
OpenCodeβ€”yes
Codex CLIβ€”yes
Roo Codeβ€”yes
Clineβ€”manual

archcore init configures detected agents automatically. To wire one up by hand:

archcore mcp install --agent cursor      # write MCP config for a specific agent
archcore hooks install                   # install session-start hooks for detected agents
claude mcp add --transport stdio archcore -- archcore mcp   # or add the server manually

How it works

  1. Initialize β€” archcore init creates .archcore/ and installs agent integrations.
  2. Capture β€” decisions, rules, plans, and guides are stored as typed Markdown documents with YAML frontmatter.
  3. Reuse β€” agents read, create, update, and link documents through MCP tools while they work; hooks load context at session start.
  4. Keep it in Git β€” review context changes like code, evolve them over time, keep them portable across tools.
.archcore/
β”œβ”€β”€ settings.json
β”œβ”€β”€ auth/
β”‚   β”œβ”€β”€ jwt-strategy.adr.md
β”‚   └── auth-redesign.prd.md
β”œβ”€β”€ backend/
β”‚   └── error-wrapping.rule.md
β”œβ”€β”€ incidents/
β”‚   └── connection-pool-exhaustion.cpat.md
└── notifications/
    └── notifications-implementation.plan.md

The structure is free-form β€” organize by domain, feature, or team. A document's type lives in its filename (slug.type.md): 19 types across three layers β€” knowledge (ADRs, rules, specs, guides), vision (PRDs, plans, ideas, requirements tracks), and experience (incident patterns, recurring tasks). This repo's own .archcore/ is a working example.

Ask your agent

"Before I touch the auth module, what decisions and rules apply here?"

Loads the ADRs and rules tied to that area before the agent edits a single line.

"We have a convention: always wrap errors with fmt.Errorf and %w. Make this a rule."

Creates backend/error-wrapping.rule.md with imperative guidance, rationale, and good/bad examples.

"Last week we had a connection-pool exhaustion incident. Document it so we don't repeat it."

Creates incidents/connection-pool-exhaustion.cpat.md with root-cause analysis and prevention steps.

For bigger flows, MCP prompts orchestrate whole document cascades β€” /product_track feature="user notifications" drafts an idea, derives a PRD, builds an implementation plan, and links them together.

How it compares

If you rely on…The gapWhat Archcore does instead
NothingThe agent re-learns your repo every session and re-litigates settled decisionsLoads decisions, rules, and conventions at session start β€” in any agent
Flat instruction files (CLAUDE.md, .cursorrules)One growing wall of text β€” no types, no links, no lifecycle, copy-pasted per toolTyped documents, a relation graph, a draft β†’ accepted lifecycle, one setup for every agent
Memory tools (claude-mem, Mem0)Remember what you did β€” volatile, opaque, vendor-boundStores how the system is built and what was decided β€” versioned in Git, owned by you
Methodology kits (BMAD, Spec Kit, Agent OS)Prescribe a process, often as a one-shot handoffStores the artifacts β€” a living context graph that evolves with the codebase
RAG / a bigger context windowRetrieves what the code says, not what was decided and whyKeeps decisions and rationale explicit and selective β€” the agent loads what applies, not everything

Not for β€” chat memory, a prompt library, or a one-shot spec-to-code generator. Archcore is a repo truth layer for coding agents, not a methodology kit.

Reference

What ships in the box: 19 document types, 4 relation types, 10 MCP tools, 5 multi-document prompts, hook integrations for 4 agents and MCP integrations for 8.

Document types β€” 19 types across vision, knowledge, and experience

Knowledge

TypeFull NameDescription
adrArchitecture Decision RecordCaptures a finalized technical decision with context, alternatives, and consequences
rfcRequest for CommentsProposes a significant change open for team review and feedback
ruleRuleCoding or process standard with imperative guidance and examples
guideGuideStep-by-step instructions for completing a specific task
docDocumentReference documentation, registries, and descriptive material
specSpecificationCanonical normative contract for a system, component, interface, or protocol

Vision

TypeFull NameDescription
prdProduct Requirements DocumentGoals, user stories, acceptance criteria, and success metrics
ideaIdeaLightweight capture of a product or technical idea for future exploration
planPlanPhased task list with acceptance criteria and dependencies
rndResearchTime-boxed investigation that answers a question blocking a decision

Two additional requirements tracks for teams that need structured discovery or formal decomposition:

Sources track (MRD β†’ BRD β†’ URD) β€” captures where requirements come from:

TypeFull NameDescription
mrdMarket Requirements DocumentMarket landscape, TAM/SAM/SOM, competitive analysis, and market needs
brdBusiness Requirements DocumentBusiness objectives, stakeholders, ROI, and business rules
urdUser Requirements DocumentUser personas, journeys, usability requirements, and acceptance criteria

ISO/IEC/IEEE 29148:2018 track (BRS β†’ StRS β†’ SyRS β†’ SRS) β€” captures how requirements decompose:

TypeFull NameDescription
brsBusiness Requirements SpecificationMission, goals, objectives, and business operational concept
strsStakeholder Requirements SpecificationStakeholder needs, operational concept, and user requirements
syrsSystem Requirements SpecificationSystem functions, interfaces, performance, and design constraints
srsSoftware Requirements SpecificationSoftware functions, external interfaces, and detailed behavioral specs

Use PRD for most projects; add the sources track for structured requirement discovery, and ISO 29148 for formal traceability in regulated or complex multi-team systems. Mix freely.

Experience

TypeFull NameDescription
task-typeTask TypeReusable checklist and workflow for a recurring task
cpatCode Change PatternRoot-cause analysis of a bug or incident with prevention steps

Each document is a Markdown file with YAML frontmatter:

---
title: "Use PostgreSQL for Primary Storage"
status: draft
tags: [database, infrastructure]
---

## Context

...

Valid statuses: draft, accepted, rejected. Tags are optional and free-form.

MCP tools, prompts, and relations

MCP tools

10 tools: init_project, list_documents, get_document, search_documents, create_document, update_document, remove_document, add_relation, remove_relation, list_relations. The server also works in an empty repo β€” agents can bootstrap .archcore/ themselves via init_project.

Prompts

Prompts orchestrate full document cascades in one call. Most MCP-compatible agents surface them as slash commands (the exact prefix depends on the client):

PromptWhat it does
product_trackidea β†’ PRD β†’ plan (lightweight feature flow)
architecture_trackADR β†’ spec β†’ plan (technical design + implementation)
standard_trackADR β†’ rule β†’ guide (codify a team standard)
sources_trackMRD β†’ BRD β†’ URD (market / business / user discovery)
iso_trackBRS β†’ StRS β†’ SyRS β†’ SRS (formal ISO 29148 cascade)

Relations

Documents link with directed relations: related (general association), implements (source implements what target specifies), extends (source builds upon target), depends_on (source requires target). Managed by the agent through MCP tools.

Local MCP server

archcore mcp serves documents from the current directory over stdio. Pass --project /path/to/repo (or set ARCHCORE_PROJECT_ROOT) when the server is launched from a directory that isn't your workspace β€” for example, by an editor integration.

Commands
CommandDescription
archcore initInitialize .archcore/ directory interactively
archcore doctorCheck your archcore setup and fix issues
archcore statusCheck .archcore/ structure and document health
archcore configView or modify settings
archcore hooks installInstall hooks for detected AI agents
archcore mcpRun the MCP stdio server
archcore mcp installInstall MCP config for detected agents
archcore updateUpdate Archcore to the latest version

archcore update checks GitHub Releases, downloads the newer version, verifies the SHA-256 checksum, and atomically replaces the binary.

Install methods

macOS / Linux

curl -fsSL https://archcore.ai/install.sh | bash

Windows

irm https://archcore.ai/install.ps1 | iex

Installs archcore.exe under %LOCALAPPDATA%\Programs\archcore and adds it to your user PATH. Open a new PowerShell window after install.

Windows (WSL)

Install WSL, then run the macOS/Linux script inside it.

Go install

go install github.com/archcore-ai/cli@latest

From source

git clone https://github.com/archcore-ai/cli.git
cd cli
go build -o archcore .

Supported platforms: macOS, Linux, Windows β€” amd64 and arm64.

For environment variables (ARCHCORE_VERSION, ARCHCORE_INSTALL_DIR, GITHUB_TOKEN) and PATH troubleshooting, see the full install guide.

Configuration

Settings live in .archcore/settings.json, created by archcore init.

FieldDescriptionValues
syncSync mode. Cloud and on-prem are coming soon.none (local only), cloud, on-prem
languageDocument language. Helps the agent generate documentation in the right language.String, defaults to en
archcore config                    # show all settings
archcore config get <key>          # get a specific value
archcore config set <key> <value>  # set a value

Ecosystem

  • Archcore Plugin β€” using Claude Code or Cursor? The plugin pairs with the CLI: same engine, plus skills, intent commands, and guardrails. One product, two entry points β€” the CLI on its own covers every other agent.
  • docs.archcore.ai β€” full documentation.
  • .archcore/ in this repo β€” a living example: the CLI is built with its own context layer.

Development

Requires Go 1.25+.

go build -o archcore .   # build
go test ./...            # run all tests