EveryDev.ai
Subscribe
Home
Tools

3,750+ AI tools

  • New
  • Trending
  • Featured
  • Compare
  • Arena
Categories
  • Agents2189
  • Coding1574
  • Infrastructure698
  • Marketing534
  • Projects498
  • Research456
  • Design416
  • Analytics389
  • Testing296
  • MCP290
  • Security286
  • Data262
  • Integration197
  • Prompts189
  • Communication183
  • Extensions173
  • Learning170
  • Voice151
  • Commerce135
  • DevOps123
  • Web86
  • Finance26
AI Tools by Topic
  • AI Coding Assistants
  • Agent Frameworks
  • MCP Servers
  • AI Prompt Tools
  • Vibe Coding Tools
  • AI Design Tools
  • AI Database Tools
  • AI Website Builders
  • AI Testing Tools
  • LLM Evaluations
Follow Us
  • X / Twitter
  • LinkedIn
  • Reddit
  • Discord
  • Threads
  • Bluesky
  • Mastodon
  • YouTube
  • GitHub
  • Instagram
Get Started
  • About
  • Editorial Standards
  • Corrections & Disclosures
  • Community Guidelines
  • Advertise
  • Contact Us
  • Newsletter
  • Submit a Tool
  • Start a Discussion
  • Write A Blog
  • Share A Build
  • Terms of Service
  • Privacy Policy
Explore with AI
  • ChatGPT
  • Gemini
  • Claude
  • Grok
  • Perplexity
Agent Experience
  • llms.txt
Theme
With AI, Everyone is a Dev. EveryDev.ai © 2026
    1. Home
    2. Tools
    3. Concord MCP
    Concord MCP icon

    Concord MCP

    Multi-agent Systems
    Featured

    An open-source, local-first MCP server that gives coding agents (Claude Code, Codex, Cursor, Gemini CLI, Grok Build) a shared work-state layer for presence, messaging, task memory, and conflict-free coordination.

    Visit Website

    At a Glance

    Pricing
    Open Source

    Full open-source release, local to your repository. MIT licensed.

    Engagement

    Available On

    Web
    API
    SDK
    CLI

    Resources

    WebsiteDocsGitHubllms.txt

    Topics

    Multi-agent SystemsMCP ServersAI Coding Assistants

    Alternatives

    Claude Peers MCPMulticaDoop
    Developer
    Concord AIConcord AI builds shared coordination infrastructure for AI…

    Listed Aug 2026

    About Concord MCP

    Concord MCP is an open-source coordination layer for AI coding agents, published under the MIT license by Concord AI. It installs as a single MCP server via npm and gives multiple agents running in the same repository a shared workspace for presence, file claims, direct messaging, task memory, ownership handoffs, and review packets. The project reached v0.10.3 as of August 2026 and has accumulated over 260 GitHub stars since its July 2026 launch.

    What It Is

    Concord MCP is a local-first, SQLite-backed MCP server that sits between your coding agents and your repository. Rather than acting as an orchestrator or autonomous agent itself, it provides the shared infrastructure layer that lets agents discover each other, reserve scope before editing, exchange live messages mid-session, and hand off work with structured evidence. The README describes it explicitly as "not an orchestrator, code reviewer, hosted sync service, memory vector DB, or autonomous coding agent" — it is the coordination substrate around agents you already run.

    The Problem It Solves

    The homepage cites a Stack Overflow 2025 Developer Survey finding that 69% of developers using AI coding tools report higher individual productivity, but only 17% report better team collaboration. A separate study of 33,596 agent-authored pull requests found that merge conflicts between PRs written by different agents occurred at 41.7%, compared to 19.8% for PRs from the same agent. Concord's own internal test showed 3/3 clashes when two agents worked overlapping files without Concord, and 0/3 with it — though the README notes this measures dual-writer exposure, not general merge-conflict reduction.

    How the Coordination Layer Works

    Concord exposes five MCP tools that agents call directly:

    • start_work — registers presence, claims a task, and reports scope overlaps before any editing begins
    • inspect_work — reads workspace and task state, agent inboxes/outboxes, and durable prompt/reply threads
    • update_work — records task context or sends a live prompt/reply to another agent in the workspace
    • transfer_work — handles assignment, acceptance, decline, release, reassignment, handoff offers, and reopening of versioned work
    • finish_work — records evidence and optionally marks a task review-ready, complete, or closed

    Lifecycle-changing operations use a monotonic task version as an optimistic lock: if two agents act on the same version, only the first transition succeeds. Every ownership change is retained in an append-only audit history. SQLite at .concord/ in the repository root is the single source of truth, shared automatically across all agents and linked Git worktrees.

    Supported Agents and Setup Path

    Concord works with any MCP-capable coding agent. The README lists dedicated integration guides for Claude Code, Codex, Cursor, Gemini CLI, and Grok Build. Setup is a three-step process:

    npm install -g @concord-ai/concord-mcp
    cd /path/to/your/repository
    concord setup
    

    concord setup creates the .concord/ workspace, registers the MCP server in each supported client's config files (.mcp.json, .cursor/mcp.json, .gemini/settings.json, .grok/config.toml, ~/.codex/config.toml), and writes Concord's tool instructions into CLAUDE.md, AGENTS.md, and client-specific rules directories. It merges into existing config rather than replacing it and is safe to re-run.

    CLI and Dashboard

    Beyond MCP tools, Concord ships a full CLI for humans and CLI-oriented agents. Key commands include concord status (roster, active work, overlaps, stale claims), concord dashboard (a live, keyboard-driven TUI that refreshes from SQLite every second), concord who, concord tasks, concord handoff <task-id>, and concord review-packet <id>. The concord adapters status command reports per-harness delivery capability, reachability, and version probe results. A cloud version ("concord Cloud, across machines") is listed as coming soon on the homepage, while the current open-source release is local to a single repository.

    Update: v0.10.3

    The latest release is v0.10.3, published August 25, 2026. The repository was created July 14, 2026 and has seen active pushes through late August 2026, indicating rapid early iteration. The project direction signal from the homepage points toward a hosted cloud tier for cross-machine coordination as the next major capability beyond the current local-first OSS release.

    Concord MCP - 1

    Community Discussions

    Be the first to start a conversation about Concord MCP

    Share your experience with Concord MCP, ask questions, or help others learn from your insights.

    Pricing

    OPEN SOURCE

    Open Source

    Full open-source release, local to your repository. MIT licensed.

    • Shared work-state for coding agents
    • File and module claim system
    • Agent-to-agent live messaging
    • Task memory and context persistence
    • Ownership, handoff, and review packets

    Capabilities

    Key Features

    • Shared work-state for multiple coding agents in one repository
    • File and module claim system to prevent overlapping edits
    • Live agent-to-agent messaging across harnesses (Claude Code, Codex, Cursor, Gemini CLI, Grok Build)
    • Task memory: decisions, assumptions, and findings persisted across sessions
    • Ownership assignment, acceptance, and handoff with audit history
    • Review packets with scope, tests, risks, and provenance before PR
    • Optimistic concurrency via monotonic task versioning
    • SQLite local source of truth at .concord/ in repo root
    • Linked Git worktree support via commondir canonicalization
    • Live TUI dashboard refreshing every second
    • Full CLI (concord status, who, tasks, handoff, review-packet, export, doctor)
    • concord adapters status for per-harness delivery capability matrix
    • Daily update checks surfaced in CLI, MCP tools, and dashboard
    • Telemetry opt-out via CONCORD_TELEMETRY_DISABLED=1 or DO_NOT_TRACK=1
    • MIT licensed open-source core

    Integrations

    Claude Code
    Codex
    Cursor
    Gemini CLI
    Grok Build
    Any MCP-capable coding agent
    SQLite
    Git
    npm
    API Available
    View Docs

    Ratings & Reviews

    No ratings yet

    Be the first to rate Concord MCP and help others make informed decisions.

    Developer

    Concord AI

    Concord AI builds shared coordination infrastructure for AI coding agents. The team's flagship product, Concord MCP, is an open-source, local-first MCP server that lets multiple agents (Claude Code, Codex, Cursor, Gemini CLI, Grok Build) share work-state, exchange live messages, and hand off tasks without human relay. The project launched in July 2026 and reached v0.10.3 by August 2026, with a hosted cloud tier in development.

    Read more about Concord AI
    WebsiteGitHubLinkedInX / Twitter
    1 tool in directory

    Similar Tools

    Claude Peers MCP icon

    Claude Peers MCP

    An MCP server that enables multiple Claude instances to communicate and collaborate with each other as peers in real time.

    Multica icon

    Multica

    Open-source managed agents platform that turns coding agents into real teammates — assign tasks, track progress, and compound reusable skills across human + agent teams.

    Doop icon

    Doop

    An open-source multiplayer design canvas where humans and AI agents collaborate side by side in real time, connected via MCP with OAuth.

    Browse all tools

    Related Topics

    Multi-agent Systems

    Platforms for creating and managing teams of AI agents that can collaborate.

    333 tools

    MCP Servers

    Model Context Protocol servers that extend AI capabilities.

    216 tools

    AI Coding Assistants

    AI tools that help write, edit, and understand code with intelligent suggestions.

    804 tools
    Browse all topics
    Back to all toolsSuggest an edit
    ratings
    discussions