connectr
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., "@connectradd a task to fix the auth flow and route it to codex"
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.
ConnectR
One shared brain for all your AI coding agents.
ConnectR is a local MCP server that gives Claude Code, Codex, Cursor, Kiro, Gemini CLI and Antigravity a single place to coordinate: one task board, one memory, and advisory file claims — so multiple agents can work on the same repo at the same time without duplicating work or overwriting each other.
Claude Code ─┐ ┌─ shared ticket board
Codex ────┤──▶ connectr MCP server ─┼─ shared facts/decisions memory
Cursor ────┤ (one JSON store) └─ advisory file claims
Kiro/Gemini ─┘ Antigravity ──┘Why
Run two coding agents on the same repo and they collide: both edit the same files, both redo the same task, and neither knows what the other learned. ConnectR fixes this with shared state instead of shared process — every agent connects to the same tiny store through the MCP tools it already speaks.
The protocol (injected into each tool's instruction file by connectr init):
Check before you start —
board_view+recallfor open work and prior decisionsClaim before build — no code until
ticket_claimsucceeds; live owners block duplicate claimsRemember what matters — facts, decisions and lessons (mistake → root cause → fix) via
remember, searchable withrecall; near-duplicates are rejected, and everywhoamisurfaces the newest lessons so no agent repeats a mistake another already paid forAnnounce your edits —
claim_fileswarns other live agents off your pathsClose with evidence — test output / commit SHAs via
ticket_update, thenticket_close+ resolution
Related MCP server: mcp-coordinator
Install & use
npm install -g connectr-mcpStarting a brand-new project? Let ConnectR assemble the orchestra:
connectr new my-app --plan brief.md # folder + PLAN.md + suggested tools, one brainnew reads your plan, detects what's installed, and suggests which tools this project
needs — dispatch CLIs matched per area (backend→claude-code, scripts→codex, docs→gemini)
and installed IDEs (Cursor/Kiro/Antigravity) joining as participants via MCP. Confirm or
override (--tools claude-code,codex), and it wires only those, saves the plan into every
dispatched agent's prompt, and seeds ticket #1: "Decompose PLAN.md into tickets" — run it
and the board fills itself.
In an existing project worked on by multiple agents:
connectr init # wires project-scope configs: .mcp.json (Claude Code),
# .cursor/mcp.json, .kiro/settings/mcp.json,
# CLAUDE.md / AGENTS.md / GEMINI.md protocol blocks,
# Cursor rules + Kiro steering docs
connectr init --global # also wires Codex (~/.codex/config.toml),
# Gemini CLI (~/.gemini/settings.json),
# Antigravity (~/.gemini/antigravity-ide/mcp_config.json)
connectr doctor # verify wiring
connectr plan "add JWT auth, tests for it, and update the docs" # describe an outcome
connectr plan "..." --run # ...and dispatch what it plans
connectr task add "fix the auth flow" # auto-routed to the best tool
connectr task add "migrate db" --tool codex --model gpt-5-codex # manual tool + model
connectr run # dispatch open tasks to their routed tools, in parallel
connectr routes # learned routing: how past outcomes reshape where tasks go
connectr dash # live TUI host: a add task · r dispatch · l tail run log · q quit
connectr ui # the same host as a local web dashboard (http://127.0.0.1:4270)connectr ui serves a zero-dependency dashboard bound to localhost: the ticket board as
kanban columns, live agents, shared memory with lesson badges, file claims, and run-log
tails — updated live over SSE. Add tasks (same @tool:model syntax) and dispatch open
tickets from the browser; dispatch always shows the plan and permission mode first and
asks you to confirm.
connectr plan is the front door: you describe an outcome, and ConnectR parks it on the
board as a planner ticket and dispatches it. The agent that claims it reads your repo,
the board and the shared memory, then creates the real tickets — titled so they route
well, with contracts published for whichever ticket another one will build against. You
never write a ticket by hand. In the web dashboard the same thing is the Plan it
button (Enter); Add as one task (shift+Enter) is the escape hatch for when you already
know exactly what you want.
In the dash, a opens an input — title auto-routes, title @codex:gpt-5-codex assigns tool
and model manually. r shows the dispatch plan and permission mode; pressing r again confirms.
Agents launch detached, so they keep working after you quit the dash.
Accounts and subscriptions
There is nothing to connect. ConnectR has no accounts, no API keys, no OAuth, no login screen. It dispatches work by running the CLI you already have installed, as a child process — that child reads its own credentials from its own place in your home directory:
Tool | Signs in with | Keeps credentials in |
Claude Code |
|
|
Codex |
|
|
Gemini CLI |
|
|
Cursor / Kiro / Antigravity | the IDE's own sign-in | the IDE's own store |
So the setup is: install a tool, sign into it once the way you normally would, done. ConnectR never sees, stores or transmits a credential — the only thing it does with them is check that the file exists, to tell you a tool is ready.
This is also why it costs nothing on top of what you already pay: because the work runs through the CLIs, it bills against your existing Claude Pro/Max, ChatGPT Plus or Google subscription rather than per-token API charges.
Check readiness before you dispatch:
connectr doctortools:
[x] claude-code dispatch installed · signed in
[x] codex dispatch installed · signed in
[ ] gemini dispatch signed out - run: gemini
[x] cursor participant joins the brain over MCPA tool that declares no credential file reports "sign-in not checkable" rather than guessing — if a tool keeps its credentials in an OS keychain, ConnectR says so instead of claiming a state it cannot verify.
Add another coding tool
ConnectR's tools are data, not code. The three below ship built in; anything else you run
is a JSON object in .connectr/config.json under tools — no fork, no PR, no rebuild:
{
"tools": [
{
"id": "opencode",
"kind": "dispatch",
"bin": "opencode",
"args": ["opencode", "run", "{mode}", "{prompt}"],
"modelArgs": ["--model", "{model}"],
"modes": { "safe": [], "auto": [], "yolo": ["--yolo"] },
"prompt": "arg"
}
]
}Field | Meaning |
| what you route to: |
|
|
| executable to find on PATH |
| the command template. |
| added only when a model is set — this is what makes model-level routing work for your tool |
| flags per permission profile; leave |
|
|
| home-relative credential file, checked for existence only, so |
| the command |
A participant entry needs only id, kind and homeDir (the folder whose presence
means it's installed) — it gets wired to the shared brain and shows up in the orchestra.
Giving an entry the id of a built-in replaces it, which is how you change flags for
a tool ConnectR already knows without waiting for a release.
Verify a new tool before trusting it with real work:
connectr task add "cli/script: hello world" --tool opencode
connectr run --dry-run # confirm it routes
connectr run # then read .connectr/runs/*.logThe first line of every run log is the exact command ConnectR spawned, so a wrong flag is
one look away. Only claude-code, codex and gemini are verified against real installs
here — treat any preset you find (including the one above) as a starting point to check on
your own machine.
Dispatch permission modes
Dispatched agents run under a per-project profile (default auto — never yolo unless you say so):
connectr init --mode safe|auto|yolo # saved to .connectr/config.jsonMode | Meaning | claude-code | codex | gemini |
| read + plan + shared brain; writes blocked |
|
|
|
| edits allowed, everything else stays gated |
|
|
|
| no gates (the old behavior, now opt-in) |
|
|
|
In safe/auto, actions a tool's own settings don't allow simply fail rather than prompt —
non-interactive agents can't answer prompts. Allowlist project-specific commands (test runners
etc.) in each tool's own settings if you want auto agents to verify their work.
Restart your coding tools so they pick up the new MCP config. Then just tell any agent:
"Use connectr: whoami, check the board, claim a ticket and start."
The 10 MCP tools
Tool | Purpose |
| register identity; see live peers + board summary |
| shared memory across all tools: |
Routing is outcome-learned, down to the model. Every closed ticket records which tool — and which model, since agents report theirs — completed, failed, or lost which category of work. With 3+ outcomes in a category, a target that outperforms the static rule takes it over, and that can be another tool or another model of the same tool:
◆ docs|readme|research|…
rule says gemini · outcomes: gemini:gemini-2.5-pro 3w/0l · gemini:gemini-2.5-flash 1w/1l
pick: gemini:gemini-2.5-pro << LEARNED overrideTwo guards keep it honest: an override needs 3+ outcomes, and it needs the rule's own tool
to have actually been tried — otherwise "never tried" would read as "worse than whoever ran
first" and the router would calcify. connectr routes shows the whole table with its
evidence. Your board history decides what's best at what, in your projects.
| ticket_create / ticket_claim / ticket_update / ticket_close | work coordination; claim-before-build |
| board_view | everything at a glance |
| claim_files / release_files | advisory locks, auto-expire after 2h |
Ticket close requires a resolution — completed, duplicate, wontfix, or already_done — so "shipped" stays distinguishable from "turned out unnecessary".
How it works
Store:
<project>/.connectr/store.json— human-readable JSON, gitignored by default.Concurrency: cross-process lockfile (
O_EXCL, stale-steal after 10s) + atomic temp-rename writes. Survives crashes; expired claims are swept automatically.Identity:
CONNECTR_AGENTenv var, else the MCP client's name, elseanon-<pid>.Transport: stdio — the one transport every listed tool supports natively. No daemon, nothing to deploy.
Verified matrix
Config targets verified against real installs on Windows:
Tool | Config wired | Status |
Claude Code |
| tested end-to-end |
Cursor |
| schema verified |
Kiro |
| schema verified |
Gemini CLI |
| schema verified |
Codex |
| schema verified |
Antigravity |
| schema verified |
init is surgical and idempotent: it only adds/updates its own marker-wrapped blocks and its own connectr entry — never touches other servers' entries or secrets.
Development
npm install
npm test # vitest suite incl. two-process race test
npm run smoke # drives two real MCP client sessions over stdio:
# cross-process memory recall + live-ticket conflict refusal
npm run build && node dist/cli/index.js init --dry-runLicense
MIT
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 Servers
- AlicenseBqualityDmaintenanceA coordination server that enables multiple AI coding agents to work together on the same project by providing shared memory, file locking, decision tracking, and architecture guidance, preventing conflicts and maintaining consistency across sessions.521MIT
- AlicenseNot gradedqualityAmaintenancePrevents AI coding agents from conflicting by coordinating file claims and resolving conflicts in real-time across multiple sessions.3961MIT
- AlicenseNot gradedqualityCmaintenanceEnables multiple AI agents like Claude and Codex to coordinate on the same project through shared tasks, file locks, and a real-time dashboard, preventing conflicts and streamlining collaborative development.121MIT
- AlicenseNot gradedqualityAmaintenanceCoordinates parallel AI coding agents by providing task ownership, scoped file locks, handoffs, and verification workflows.MIT
Related MCP Connectors
Coding agents from Claude Code, Cursor and Codex claim jobs and lock files on one shared board.
One shared brain for your AI coding agents: team memory, agent Q&A, tasks, and file claims.
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
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/JrKrishh/connectr'
If you have feedback or need assistance with the MCP directory API, please join our Discord server