vibelive MCP Server
Click on "Deploy 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., "@vibelive MCP Serverstart a shared claude code session and show the join URL"
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.
vibelive
$ vibelive host -- node -e "console.log('hello')"
vibelive host ready — sharing node -e console.log('hello')
join: ws://localhost:65130
lan: ws://10.0.0.179:65130
you are the driver. /release to hand off, /drive to take back, /quit to end.
helloInstall
npm install -g vibelive
vibelive host -- node -e "console.log('hello')"Needs Node 18 or newer. vibelive --version currently prints 0.2.2 even on npm 0.2.3.
v0 is host-authoritative local/LAN. Sharing uses a plain WebSocket on the host machine. End-to-end-encrypted relay fan-out is not shipped.
npx -y vibelive --helpRelated MCP server: Claude Relay
Quick start
Share any command you would run in a terminal. The host prints a ws:// join URL and starts as the driver:
vibelive host -- node -e "console.log('hello')"To wrap Claude Code: vibelive host -- claude. A Python one-shot: vibelive host -- python3 -c "print('hello from python')". Pass --port and --name before --.
From another terminal, or another machine on the LAN, join with the printed URL:
vibelive join ws://localhost:45931 --name beevibelive joining ws://localhost:45931 as bee…
[presence] 2 online · driving: ada
[control] driver: host
connected. /drive /release /type <text> /quit
helloThe joiner sees the live output plus a presence and chat line.
Why
For developers pairing on Claude Code, Codex, Gemini, Grok/pi, or Kimi, who today share a screen or a tmate session. vibelive wraps the agent, fans output over a local WebSocket, and lets exactly one driver write to stdin.
Not for a persistent tmux session, a full PTY (resize, raw-mode programs), or a 1,000-person encrypted relay. v0 is host-authoritative local/LAN. Session sharing is gated by the consent ledger in @pooriaarab/vibe-core (scope share:session), and is revocable.
Part of the Vibe Suite — companion tools for agentic coding CLIs. Ships as CLI, npm library, and MCP server. Local-first: it runs on your machine.
host
Start a session. Everything after -- is the wrapped command, including that command's own flags.
vibelive host -- claudevibelive host ready — sharing claude
join: ws://localhost:63233
lan: ws://10.0.0.179:63233
you are the driver. /release to hand off, /drive to take back, /quit to end.--port <n> binds that port (0 picks an ephemeral port). --name <s> sets the host participant name (default host). The host user starts as the driver.
On the host, /release hands off the write token, /drive takes it back, and /quit ends the session. Other lines go to the wrapped command while you are the driver.
Exactly one participant holds the write token at a time (src/arbitration.ts). Everyone else always has read, chat, and cursor on the wire. Only agent-write is arbitrated, so two people never interleave garbage into one stdin.
join
vibelive join ws://localhost:45931 --name bee--name defaults to $USER. Slash commands while joined:
/drive— request the write token (queued FIFO)/release— relinquish the token/type <text>— send input to the wrapped agent (driver only)/quit— leave the session/help— print the slash list
Everything else you type is chat.
A non-driver /type is rejected (not the current driver — request control first). After the host /releases, a joiner /drive then /type ping-from-bee reaches the wrapped process.
mcp
vibelive mcpThe process stays up and prints nothing until an MCP client talks on stdin. Closing stdin exits 0 and kills any session the server started.
Two tools:
tool | description |
| Start a host+relay wrapping a command; returns the |
| List active sessions (id, url, participants, current driver). |
Claude Code / MCP client config after a global install:
{
"mcpServers": {
"vibelive": { "command": "vibelive", "args": ["mcp"] }
}
}Platform notes (Windows npx wrapping, Claude Desktop paths): docs/SETUP.md.
How it works
Three channels over one WebSocket (details in docs/tech-spec.md):
Agent output — ordered, sequence-numbered append-log. The host is the sole author. Late joiners get snapshot + tail.
Presence / cursors — ephemeral, high-frequency, lossy is fine. The CLI renders presence; cursor deltas exist on the wire. The Figma-style cursor UX is the browser prototype, not the shipped CLI.
Chat + control — reliable, ordered. Agent-write goes through
WriteArbiterso there is never more than one driver.
v0 uses plain pipes (child_process.spawn), not a PTY. resize is a no-op.
Library (npm install vibelive):
import { createHost, createRelay, joinSession, WriteArbiter } from 'vibelive';
const host = createHost({ command: ['node', '-e', "console.log('hello')"] });
const relay = await createRelay({ port: 0, hostHandle: host, initialDriver: 'host' });
console.log(relay.url); // ws://localhost:<port>
const client = joinSession({ url: relay.url, name: 'ada' });
client.onOutput((text) => process.stdout.write(text));
client.requestControl();Interactive UX prototype (no build, no network): open docs/prototype.html in a browser. It is a demonstration, not the CLI.
Specs: docs/tech-spec.md (scale, transport tiers, tests), docs/vibe-core-spec.md (cascade, hooks, consent).
Planned, not shipped: real PTY wrapping (node-pty) for resize, raw-mode, and signals; cursor interpolation and a richer terminal renderer; the dumb, e2e-encrypted, self-hostable relay (pub/sub fan-out to ~1,000, relay reads only ciphertext).
Contributing
See CONTRIBUTING.md.
License
This server cannot be deployed
Maintenance
Related MCP Connectors
The team layer for AI coding agents: shared contracts, collision alerts, E2EE sessions.
Hosted runtime for persistent agent teams, durable workflows, memory, schedules, and goals.
Develop, manage, and debug Railway projects, services, and deployments from within agents.
- mcp-serverOAuthai.cdbx
Build Apps and run code in 30 languages — sandboxed, with persistent sessions for agent loops.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to interact with terminal environments through multiple concurrent PTY sessions. Supports cross-platform terminal operations including command execution, session management, and real-time communication.5 npm3MIT
- AlicenseNot gradedqualityBmaintenanceEnables real-time communication between Claude Code instances across multiple machines via WebSocket, allowing context sharing, task handoffs, and coordination between sessions.377 npm3MIT
- AlicenseNot gradedqualityBmaintenanceEnables AI agents to execute commands in a shared tmux session that is simultaneously visible to a human via a web-based terminal UI.1MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to spawn and interact with real terminal sessions, capturing screenshots of rendered TUI output and sharing live sessions for debugging.4 npm1MIT