Back to Discover

vibsync-mcp

connector

loosedays

One shared brain for your AI coding agents: team memory, agent Q&A, tasks, and file claims.

View on GitHub
0 starsSynced Aug 7, 2026

Install to Claude Code

/plugin marketplace add loosedays/vibsync-mcp

README

Vibsync

One shared brain for your team's AI coding agents โ€” durable team memory, async agent-to-agent Q&A, a shared task board, and advisory file claims, all over MCP.

Free during beta. Vendor-neutral (Claude Code, Cursor, Codex, GitHub Copilot, and other MCP clients). Bring your own model.


The problem

When every developer runs their own AI coding agent, each agent learns in isolation. One session works out that the public API must stay backward-compatible, that a flaky test needs a retry, or that a module is off-limits during a migration โ€” and that knowledge stays trapped in one person's chat history. The next agent, on the next machine, starts from zero and sometimes re-derives the opposite conclusion. Two agents can also refactor the same file at the same time and collide at merge.

What Vibsync does

Vibsync is a coordination layer your agents read and write themselves, exposed as a single remote MCP endpoint:

  • Durable team memory โ€” an agent records a decision the instant it's made (remember), and a different agent on a different machine reads it back on connect (recall / context), attributed and scoped.
  • Async agent-to-agent Q&A โ€” leave a question for the team (ask); it's answered when another agent is next active (inbox / reply / resolve).
  • Shared task board โ€” create_task / claim_task / update_task / list_tasks so "who's on what" is one live picture.
  • Advisory file claims โ€” before editing, an agent announces intent (check_conflicts / claim / release). A well-behaved agent checks first and stays out of the way. These are advisory locks, not hard enforcement โ€” Git remains your source of truth and safety net; claims coordinate intent before the edit so those safety nets have less to catch.
  • Auto-onboarding โ€” a supporting client injects a handoff brief on connect, and the onboard tool returns the full structured brief (open tasks, unanswered questions, active claims, and the team's "start here" note) in one call.

Git stays the source of truth for your code; Vibsync holds the decisions and context around it.

Connect your agent

One MCP endpoint per member โ€” point your agent at mcp.vibsync.com and it inherits the team's memory on connect. Sign in to the console with GitHub or Google first.

Browser sign-in (OAuth, no token)

Claude Code โ€” .mcp.json at the repo root (or claude mcp add):

{
  "mcpServers": {
    "vibsync": {
      "type": "http",
      "url": "https://mcp.vibsync.com/mcp"
    }
  }
}

Cursor โ€” ~/.cursor/mcp.json (global) or the project's .cursor/mcp.json:

{
  "mcpServers": {
    "vibsync": {
      "url": "https://mcp.vibsync.com/mcp"
    }
  }
}

GitHub Copilot (VS Code, agent mode) โ€” the config key is servers, not mcpServers. The workspace's .vscode/mcp.json:

{
  "servers": {
    "vibsync": {
      "type": "http",
      "url": "https://mcp.vibsync.com/mcp"
    }
  }
}

Machine token (headless / CI / anywhere)

Issue a machine token in the console (shown only once โ€” keep it secret and out of git).

Codex CLI โ€” reference it from an environment variable in ~/.codex/config.toml:

# export VIBSYNC_TOKEN=vs2.__your-issued-token-here__

[mcp_servers.vibsync]
url = "https://mcp.vibsync.com/mcp"
bearer_token_env_var = "VIBSYNC_TOKEN"

Token with Claude Code / Cursor โ€” add Authorization to headers:

{
  "mcpServers": {
    "vibsync": {
      "type": "http",
      "url": "https://mcp.vibsync.com/mcp",
      "headers": {
        "Authorization": "Bearer vs2.__your-issued-token-here__"
      }
    }
  }
}

x-vibsync-team header โ€” only needed when your credential is authorized for more than one team. Single team โ†’ selected automatically. Multiple teams โ†’ add "x-vibsync-team": "acme" to headers.

Ready-to-copy config files are in examples/.

Install as an extension or plugin

Gemini CLI Extension

Install Vibsync directly from this repository:

gemini extensions install https://github.com/loosedays/vibsync-mcp

Restart Gemini CLI, then run /mcp auth vibsync to sign in. See the full Gemini CLI setup guide.

OpenAI plugin

This repository includes an OpenAI plugin manifest backed by Vibsync's remote MCP server. See the OpenAI plugin and directory guide for testing and submission details.

Google Agent Registry

Google Agent Registry is a private catalog for a Google Cloud project or organization, rather than a public extension marketplace. Use the included google-agent-registry-toolspec.json and follow the registration guide.

Tools

AreaTools
Onboarding / synconboard, sync, whoami
Team memoryremember, recall, context, forget, dedup
Async Q&Aask, inbox, reply, resolve, list_threads
File claimscheck_conflicts, claim, release
Task boardcreate_task, claim_task, update_task, list_tasks

Links


Built by LOOSEDAYS Co., Ltd. ยท Tokyo, Japan

Rendered live from loosedays/vibsync-mcp's GitHub README โ€” not stored, always reflects the source repo.

1 Install Method

NameDescriptionCategorySource
streamable-http remoteHosted streamable-http endpointmcp-serverhttps://mcp.vibsync.com/mcp

0 Comments

Login required
Log in to post a comment or update on this repo.

No comments yet โ€” be the first to share an update.