LSP-backed IDE intelligence plus concurrency-safe, transactional edits for AI coding agents.
Copy the AI prompt to install this server into Claude Code, Cursor, or another agent β or use 1-click editor setup below.
π‘ Paste the JSON block into your client's configuration file under mcpServers, then restart the application.
IDE intelligence for agents β guardrails for unattended work, coordination for fleets.
Plumb is an MCP server that gives a coding agent the intelligence layer of an IDE β LSP-backed semantics, a tree-sitter code index, and project memory β inside guardrails: atomic, lock-serialised writes with transactional rollback, scoped filesystem and git access, and a daemon that survives its own crashes. And because every agent you run shares that one daemon, plumb is also the coordination layer between them: peers see the writes others made, message each other, and hand off work instead of duplicating it. A single binary; nothing else to install.
LLM agents usually work by reading whole files into the context window β token-heavy, lossy at scale, blind to symbol semantics, and unsafe to let loose on a real repo. Plumb is built on four pillars, in priority order.
Leaving an agent to edit a codebase for an hour is only viable if writes can't corrupt files and a crash can't wedge your session.
plumb serve is a reconnecting proxy. If the daemon crashes or hangs, it respawns one and replays the handshake; the agent never notices. In-flight writes are never silently re-run.See it run: docs/demos/ β two-agents-one-file.sh (a stale write is refused, nothing is lost) and daemon-respawn.sh (below β the daemon is killed mid-session; the agent's next edit still succeeds):

One daemon serves every agent you run β which makes it the natural place for agents to see and talk to each other, not merely avoid each other's writes. Locks stop two agents corrupting a file; coordination stops them duplicating a task, rebasing onto a function signature a peer is mid-rewrite of, or shipping a change a peer's in-flight work is about to invalidate.
workspace_sessions names every active session and the writes it made, as the daemon recorded them. Recorded activity, not another agent's say-so: an agent about to start a task can see that a peer is already in those files. (Read-only operations never appear, and a write that failed or was refused is kept but marked [failed β no change applied] β so "a peer is working here" and "this landed" are distinguishable at a glance.)leave_note / check_messages give sessions a threaded channel: hand a change to the peer already rewriting those files, or ask a peer to measure a behaviour instead of assuming it. Messages ride on ordinary tool results, so a working agent receives them without polling.[collab] intents) β share_intent declares what an agent is working on; a peer whose write touches a claimed path gets a hint at the moment of the would-be collision. Intents are deliberately labelled as unverified claims, kept distinct from the daemon-recorded activity feed, and never block anything.[collab] knowledge_handoff) β share_findings turns what an agent just learned into a searchable, secret-scrubbed project memory immediately, so the knowledge outlives the session that produced it.Coordination is advisory by design β the write-safety above never depends on agents cooperating. Reference: Cross-agent sharing in the tool docs and the [collab] config section.
The same primitives your editor has, exposed as structured tools:
rename_symbol, replace_symbol_body, safe_delete_symbol understand scope, types, and references.gopls/pyright output is appended to every write, so the agent learns it broke the build immediately.session_start returns workspace, branch, recent commits, diagnostics, and project memory.See the measured, reproducible numbers behind this: docs/use-cases.md β reading one function is 2.9Γβ33.4Γ less context than the whole file (the ratio is how much of the file you didn't need), and find_references returns the real call sites where a text search is 60% noise. The page publishes the losses too: read_multiple_files costs 1.31Γ more payload than reading the files natively (down from 1.32Γ, but still a loss β see Scenario 10 for why it isn't smaller). Every figure is regenerated by scripts/measure-use-cases.py.
Plumb is a single binary β from zero to your first answer:
1. Install
macOS note: prebuilt binaries are not yet notarised β on first run you may need
xattr -d com.apple.quarantine ./plumb, or right-click β Open. Homebrew installs avoid this.
2. Connect your agent
plumb setup writes the MCP config for you β no hand-editing JSON.
3. Open your project and try it
Make sure the language server you need is on your $PATH (gopls for Go,
pyright for Python, β¦), then point your agent at a real question. In Claude
Code:
Plumb resolves the workspace and runs session_start for orientation, then
answers with real LSP and topology data β actual call sites and blast radius β
instead of guessing from file dumps. It's read-only; nothing is modified. (Any
connected agent works β just paste the prompt.)
No
go.mod/pyproject.tomland not a git repo? Runplumb initonce to pin the workspace root (it also seeds.plumb/context.mdand project config).
Full walkthrough β docs/getting-started.md.
Plumb negotiates LSP capabilities per language and also ships a built-in tree-sitter index for search and navigation with no language server. Support comes in tiers β we'd rather be precise than claim a big number.
| Tier | Languages | What you get |
|---|---|---|
| First-class (CI-tested, real-binary integration) | Go (gopls), Python (pyright) | Full LSP: definitions, references, rename, diagnostics, hierarchies + all write tools |
| Validated | Java (jdtls), Rust (rust-analyzer), Swift (sourcekit-lsp), TypeScript/JS (typescript-language-server), Zig (zls), Kotlin (kotlin-lsp), HTML (vscode-html-language-server) | Full LSP; just put the server on $PATH and it activates automatically (exclude any language with [lsp.<lang>] enabled = false). HTML carries one caveat: that server has no filesystem access, so it answers only from documents already opened |
| Search & navigation (tree-sitter, no LSP needed) | 31+ incl. JS/TS/TSX, Ruby, C, C#, Elixir, Scala, PHP, JSON, CSS, SCSS, XML, Lua, C++, Objective-C, Dart, Bash, SQL, HCL, Dockerfile, TOML, YAML, Markdown | Ranked symbol search, outlines, graph exploration via the Topology index |
Real-binary validation has been exercised on macOS and Linux β as of 2026-08-21, all nine adapters pass their integration tests against real server binaries on both. Details, including three toolchain traps that look like adapter bugs, are in docs/adding-an-lsp.md. Windows is tracked but not yet supported β the daemon's Unix-socket architecture needs a port.
plumb serve is a thin, reconnecting stdio proxy. The real work happens in one shared background daemon, so language servers stay warm across chats.
No reviews yet β be the first to share how this listing worked for you.
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/plumb)<a href="https://allmcps.com/mcp/plumb"><img src="https://allmcps.com/api/badge/plumb?style=directory" alt="Plumb on AllMCPs" /></a>