Skip to content
VS Code

agentsync for VS Code

io.github.jarmstrong158/agentsync

Multi-agent coordination MCP: claim work, survey peers, resolve conflicts via a git branch as CAS.

client:VS Code transport:stdio runtime:pypi

Install agentsync in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agentsync-repo",
      "description": "AGENTSYNC_REPO",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agentsync-agent-id",
      "description": "AGENTSYNC_AGENT_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agentsync-branch",
      "description": "AGENTSYNC_BRANCH",
      "password": true
    }
  ],
  "servers": {
    "agentsync": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "agentsync-mcp"
      ],
      "env": {
        "AGENTSYNC_REPO": "${input:agentsync-repo}",
        "AGENTSYNC_AGENT_ID": "${input:agentsync-agent-id}",
        "AGENTSYNC_BRANCH": "${input:agentsync-branch}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

agentsync in other clients