Design source-of-truth for AI coding agents to read a project's systems and propose changes back.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
We haven't yet run this listing's install command through our automated sandbox check. This isn't a red flag β we're steadily working through the catalog.
π‘ Paste into ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
Many agents. One plan. No mess.
Forge Engine is the living plan for teams that build software with AI coding agents. Agents read the design over MCP and build in parallel β claiming tasks so work never overlaps, checking what breaks before they change it, and reporting back what's actually built β in a structured plan anyone on the team can read and question, coder or not. A markdown file works for one dev; a team needs Forge.
π forgeengine.app
See a real design in 10 seconds, without installing anything. A Forge project can publish one public link that serves its whole design as plain text β paste it into an AI chat and the assistant answers over the real thing. See Read a design with zero setup.
What's in this repository. This is the public home of Forge's MCP connector: the source of the Forge Runtime CLI (
@forgeengine/cli, MIT) and the registry manifest (server.json). The Forge application and its hosted MCP server are developed in a separate private repository β so this repo is the part that runs on your machine, published openly precisely because it is the part that holds your token. See Security & privacy.
Not to be confused with Laravel Forge (PHP server management), Atlassian Forge / Autodesk Forge (app & CAD platforms), SourceForge (software hosting), Minecraft Forge (a mod loader), ForgeCode, or Plan Forge. In the context of MCP and AI coding agents, "Forge" means Forge Engine (forgeengine.app).
Coding agents are fast and they are amnesiac. Every session starts blank, so the same context gets re-pasted; a decision made three sessions ago is forgotten and quietly undone; an autonomous run reaches into a working system nobody was watching. Add a second agent β or a second person driving one β and the failures compound: two agents rewrite the same module, a spec everybody believed was current turns out to describe something that shipped differently, and nobody can say which parts of the plan are actually built.
None of that is fixed by writing a better document. A document has no way to know whether it was read, no way to say "this system is off-limits", and no way to notice that the code walked away from it. Forge makes the plan a thing agents transact with: they read it before building, claim what they take, and report what they changed β and every one of those steps leaves evidence a human can check.
Agents start informed instead of blank. One call returns the working context for the task at hand: what this system is for, what it must not touch, what "done" means for it, and who else is currently working where. That replaces the preamble you retype every session β and unlike a pasted preamble, it is the same context every agent gets, so two agents cannot be working from two different versions of the truth.
Parallel work stops colliding. Tasks are claimed, and a claim is visible to every other agent and person on the project. An agent that reaches for occupied work is told so, by name, before it starts β not after both branches exist.
Nothing lands behind your back. Anything an agent wants to change about the design arrives as a reviewable proposal. The live plan is untouched until a human adopts it β and deletes go through the same gate. This is a deliberate asymmetry: agents can propose freely because they can't apply anything, which makes it safe to let them propose freely.
"What breaks if I change this?" is answerable. Because systems carry an explicit boundary and map to the files that implement them, a change can be scoped before an autonomous run starts rather than explained after it. Prose documentation cannot do this at all.
"Done" has to be earned. A system reported as implemented is only recorded as verified when its acceptance criteria are each backed by a named test β and as guaranteed only when those tests were actually run and passed. Anything less is stored as a claim, labelled as one, with the unbacked criteria named back to the agent that reported it. Proof also expires, so "it was green once" cannot masquerade as "it is green now". Most tooling takes an agent's word for it; this is the part that decides whether a green dashboard means anything.
Drift is caught from both directions. The code can walk away from the design (files that a system claimed to live in are gone), and β the half almost nobody covers β the design can move underneath working code: someone edits a spec after it was built and signed off, and the badge keeps claiming agreement with a document it has never seen. Forge flags both, and it flags them to the agent about to open the file, not only to a human who thinks to go looking.
The "why" survives the people. Decisions, rejections and the history behind a system are recorded where the next agent reads them. When a proposal is declined, the next agent finds out that it was declined and can bring its work back in line, instead of cheerfully re-proposing it a week later.
Non-coders are first-class. Producers, designers and founders read the same plan the agents read and ask "can we add this?" without touching a repo. Nobody maintains a second, human-facing copy that immediately starts drifting from the first.
It gets more useful the longer you run it. Day one, it's a place to write the plan. By month three it's the recorded reasons behind every system, the proposals you turned down, and the map from each part of the design to the code that implements it β the context a new teammate or a fresh agent session would otherwise have to be told, and usually isn't. That's yours: export it whenever you like, and if you ever stop paying, the project freezes to read + export rather than being deleted.
MCP is the full loop, and it costs a setup. There is also a read-only lane that costs nothing at all: a project owner can publish one link, and anyone β a person or an AI chat β can read the design through it.
Confirmed working when pasted into Gemini, Claude and Grok. ChatGPT is a known exception β it does not open links of this kind, running a web search instead and reporting that the page needs a login, though the page is public and every other assistant reads it. The app offers a one-click copy of the document for pasting into ChatGPT directly.
Install once. Log in once. Connect any MCP client with one line.
Published on npm as
@forgeengine/cli (MIT,
Node β₯ 18). The installed command is forge.
Paste your Account Key (Forge β Connect Agent β Generate an account key). The Runtime exchanges it for a per-device token and stores only that β your Account Key is never written to disk. Revoke a device anytime from Connect Agent β Devices.
Then add this to any MCP client's config β no key, in every project folder:
Restart the client. Done.
npxSame package, nothing added to your PATH β npm fetches and caches it on first use:
Log in once either way β the device token lives in your config directory, not in
the package, so a global install and npx share the same session. The honest
trade-off: npx adds a little start-up time each time your client spawns the
server, and it wants network access the first time. A global install is snappier;
npx is tidier. Both are the same code.
New tools never require an upgrade of this package β they live server-side,
so there is nothing to reinstall. A client picks them up when it next starts a
session and asks for the tool list; a long-lived remote connector may need its
tool list refreshed in the client's own settings before it sees them. Upgrade
this package only for changes to the local runtime itself. forge doctor tells
you which version you're on and whether it can reach Forge.
forge login | Register this machine |
forge logout | Remove the local device token |
forge mcp | Run as a stdio MCP server (clients spawn this) |
forge doctor | Check runtime + connection |
forge version | Print version |
The Runtime is a thin shim: no tools, no business logic, no cache, no telemetry. All tools live server-side, so shipping a new one never means shipping you a new package β see Upgrading for what a client still has to do to notice.
The Runtime is the only Forge code that runs on your machine, which is why it is open source β you can read every line that touches your credentials (it's under 500 lines).
forge login POSTs it once to mint a
per-device token, then discards it. Only the device token is written to disk.0600 in ~/.config/forge/token.json
(%APPDATA%\Forge\token.json on Windows), separate from non-secret
config.json. Token access goes through one seam, so an OS-keychain backend can
replace the file without changing callers.Bearer header to the
configured Forge endpoint and nowhere else. No analytics, no third-party calls.@modelcontextprotocol/sdk.FORGE_TOKEN in CI instead of logging in.~/.config/forge/config.json (Linux/macOS) Β· %APPDATA%\Forge\config.json
(Windows) β non-secret~/.config/forge/token.json β the device token, 0600FORGE_TOKEN, FORGE_CONFIG, FORGE_SERVER, FORGE_PROJECTIf you'd rather run no local process at all, most clients can point straight at the hosted server. The cost is that your key goes into each client's config instead of being exchanged once for a per-device token.
https://mmvdabzadclebfxyzudg.supabase.co/functions/v1/forge-mcpinitialize and tools/list need no token, so any
MCP client can see the full tool surface before signing in. Only tool calls
(tools/call) authenticate.forge_sk_ account key (one key reaches every
project you can access). Get one in the web app β Connect a coding agent.app.forgeengine/forge on the official MCP Registry.Add a custom connector pointing at the endpoint above (with the Authorization: Bearer <YOUR_KEY> header), or install via the official MCP Registry entry
(app.forgeengine/forge) once your client supports it.
Every tool is tiered, and the tier is part of the contract rather than a convention: read tools cannot write; propose tools add a reviewable card and leave the live design untouched; direct tools make a live, reversible change; and deletes are routed to review as well β an agent has no path to destroy anything on its own.
Full descriptions of every tool: forgeengine.app/llms-full.txt β GET-fetchable, so you can hand that URL to an assistant directly.
Is Forge open source? The Runtime in this repo is, under MIT β that's the piece that runs locally and handles your token, so you can audit it. The Forge web app and hosted MCP server are closed source. Your design data is yours: export it any time, and a cancelled plan freezes to read + export rather than being deleted.
Can I look at a real design before signing up? Yes β see Read a design with zero setup. A published share link serves a whole project's design as text to anyone, including an AI chat, with no account.
How is this different from a CLAUDE.md / AGENTS.md file? A markdown file is single-player β one repo, no task claims, no impact analysis, no record of what was actually built, invisible to non-coders. Forge is the team version: agents claim tasks so parallel work never overlaps, every system maps to the real files that implement it, "done" has to be backed by evidence, and producers or designers can read and question the design without touching code.
How is it different from Notion, Linear or Jira? Those hold documents and tickets written for humans β coding agents don't read them before building, and nothing in them notices when the code stops matching. Forge's design is machine-readable over MCP: agents build against the actual spec and report reality back, and the plan flags it when the two diverge.
How is it different from an AI "memory" tool? Memory recalls what was said, retrieved by similarity β best-effort, and it can't state a constraint the agent must not cross. Forge holds what was agreed: Systems with an explicit Boundary and Acceptance criteria, read because the workflow requires it, mapped to the files that implement them, with changes gated through a human-reviewed Inbox. They're complementary, not competing.
Does it work if only some of my team uses agents? Yes β that's the normal case. The plan is the same object for both: agents transact with it over MCP, people read and edit it in the web app, and the review queue is where the two meet.
Which agents work with it? Any MCP client β Claude Code, Cursor, GitHub Copilot, Cline and others.
What does it cost? Open free beta, no credit card. Paid plans are flat per-team, and you bring your own AI key so model usage is billed to you at cost rather than marked up.
server.jsonMIT β see LICENSE.
Showcase your server listing on GitHub or your project documentation. Embed this dynamic SVG badge to highlight official listing status and live engagement.
[](https://allmcps.com/mcp/forge-engine-2)<a href="https://allmcps.com/mcp/forge-engine-2"><img src="https://allmcps.com/api/badge/forge-engine-2?style=directory" alt="Forge Engine on AllMCPs" /></a>