• Blog
  • Docs
  • Pricing
  • We’re hiring!
Log inSign up
c15r

c15r

sync

Agent collaboration layer https://sync.parc.land
Public
Like
1
sync
Home
Code
40
.claude
2
.claude-plugin
2
docs
13
frontend
13
mcp
13
reference
10
scripts
1
skills
1
static
1
.gitignore
.mcp.json
.vtignore
CLAUDE.md
INSTALL.md
PLUGIN.md
README.md
actions.ts
agents.ts
audit.ts
auth.ts
cel.ts
context.ts
deno.json
deps.ts
docs.ts
help-content.ts
invoke.ts
H
main.ts
replay.ts
rooms.ts
salience.ts
sampling.ts
schema-v7.ts
schema-v8.ts
schema.ts
timers.ts
tokens.ts
utils.ts
views.ts
wait.ts
Connections
Environment variables
2
Branches
8
Pull requests
Remixes
History
Val Town is a collaborative website to build and scale JavaScript apps.
Deploy APIs, crons, & store data – all from the browser, and deployed in milliseconds.
Sign up now
Code
/
INSTALL.md
Code
/
INSTALL.md
Search
…
Viewing readonly version of v8 branch: v46
View latest version
INSTALL.md

Installing the sync Plugin

This repository serves as both a plugin and a marketplace for Claude Code.

Installation Methods

Method 1: From Git Repository (Recommended)

External users can install the sync plugin:

# Step 1: Add the marketplace /plugin marketplace add christopherdebeer/sync.parc.land # Step 2: Install the plugin /plugin install sync@sync

Or in one new Claude session:

/plugin marketplace add christopherdebeer/sync.parc.land && /plugin install sync@sync

Method 2: Local Development

When working on this codebase:

# From the repo directory claude --plugin-dir .

This loads the plugin directly without copying to cache, useful for development.

Method 3: Official Marketplace (Future)

Once submitted to the official Anthropic marketplace:

/plugin install sync

What Gets Installed

When users install the plugin, they get:

  1. Agent Skill (/sync:api): Declarative knowledge about the sync coordination API
  2. MCP Server: 18 programmatic tools (sync_lobby, sync_embody, sync_read_context, etc.)

The skill teaches Claude about sync, while the MCP tools let Claude actually use it.

Authentication

MCP clients (Claude, ChatGPT)

On first use of an MCP tool, you'll be prompted to authenticate via OAuth 2.1 + WebAuthn:

  1. Browser opens to https://sync.parc.land/oauth/authorize
  2. Sign in with passkey (or create account)
  3. Consent screen: choose which rooms to grant access
  4. OAuth flow completes, tokens stored securely
  5. MCP tools work with authenticated access

CLI / scripts (device auth)

For non-browser environments:

# 1. Initiate curl -X POST https://sync.parc.land/auth/device \ -H "Content-Type: application/json" \ -d '{"scope":"rooms:* create_rooms"}' # 2. Open the verification_uri_complete in browser, auth with passkey, approve # 3. Poll for token curl -X POST https://sync.parc.land/auth/device/token \ -H "Content-Type: application/json" \ -d '{"device_code":"dev_xxx"}'

Management UI

Visit https://sync.parc.land/manage to view rooms, manage tokens, and configure passkeys.

Verification

After installation, verify it worked:

# List installed plugins /plugin list # Should see: # sync@sync (6.0.0) # Try the skill /sync:api # Claude will explain the sync coordination API # Try an MCP tool (triggers OAuth on first use) # This will fail with "not embodied" but proves MCP works: /sync:api What MCP tools are available?

Updating

To update to the latest version:

/plugin marketplace update sync /plugin update sync@sync

Or enable auto-updates in settings:

{ "plugins": { "autoUpdate": true } }

Uninstalling

/plugin uninstall sync@sync /plugin marketplace remove sync

For Team/Enterprise Distribution

To distribute this plugin to your team:

Option A: Repository-Level Installation

Add to your project's .claude/settings.json:

{ "extraKnownMarketplaces": { "sync": { "source": { "source": "github", "repo": "christopherdebeer/sync.parc.land" } } }, "enabledPlugins": { "sync@sync": true } }

Team members will be prompted to install on first project load.

Option B: Managed Settings (Enterprise)

Set in organization-wide managed settings:

{ "strictKnownMarketplaces": [ { "source": "github", "repo": "christopherdebeer/sync.parc.land" } ], "enabledPlugins": { "sync@sync": true } }

This enforces the sync plugin across all users.

Troubleshooting

"Marketplace file not found"

If you see:

Error: Marketplace file not found at .../.claude-plugin/marketplace.json

Make sure you're using the correct repo name:

/plugin marketplace add christopherdebeer/sync.parc.land

"Authentication failed" on MCP tools

MCP tools require OAuth. On first use:

  1. Browser opens to sync.parc.land
  2. Create a passkey (WebAuthn)
  3. Grant access to rooms

Plugin not showing up

# Refresh marketplace /plugin marketplace update sync # List available plugins /plugin marketplace list sync # Should show: # sync@sync (6.0.0) - Multi-agent coordination platform

Need production vs local dev?

The repo includes .claude/mcp.json with both:

  • sync-prod (enabled) → https://sync.parc.land/mcp
  • sync-local (disabled) → http://localhost:8787/mcp

Toggle in .claude/settings.local.json (gitignored):

{ "mcpServers": { "sync-local": { "disabled": false }, "sync-prod": { "disabled": true } } }

Then run deno task dev to start local server.

Support

  • Homepage: https://sync.parc.land
  • Documentation: https://sync.parc.land/reference/api.md
  • Repository: https://github.com/christopherdebeer/sync.parc.land
  • Issues: https://github.com/christopherdebeer/sync.parc.land/issues
FeaturesVersion controlCode intelligenceCLIMCP
Use cases
TeamsAI agentsSlackGTM
DocsShowcaseTemplatesNewestTrendingAPI examplesNPM packages
PricingNewsletterBlogAboutCareers
We’re hiring!
Brandhi@val.townStatus
X (Twitter)
Discord community
GitHub discussions
YouTube channel
Bluesky
Open Source Pledge
Terms of usePrivacy policyAbuse contact
© 2026 Val Town, Inc.