vibeshare-mcp
Enables agents to share live terminal sessions, manage viewers and join requests, and stop active shares, with consent handled through tool-approval prompts.
README
vibeshare
Share your live agent coding session by URL — traces.com-style, open source, CLI-first. Spectators watch read-only; invite links let viewers request to join as collaborators (host approves, live).
Part of the Vibe Suite — companion tools for agentic coding CLIs (Claude Code, Codex, Gemini, Grok/pi, Kimi). Ships as CLI + npm package + MCP server, built on @pooriaarab/vibe-core (consent ledger, hooks bus, badges).
Local-first: the share runs on your machine. The consent ledger gates every share (share:session scope), the stream is served straight from your host, and nothing is stored on a server.
Works with any harness
vibeshare shares a LIVE TERMINAL SESSION. It wraps a PTY, so the program inside is irrelevant — any agent CLI, shell, or TUI renders faithfully (colors, cursor, full-screen) via xterm.js in the browser.
Two ways to share a session:
- Wrap at launch (no tmux):
vibeshare --public -- <harness>— vibeshare is the parent, PTY-captures. Examples:vibeshare --public -- claude,-- codex,-- gemini,-- aider,-- opencode,-- kimi,-- amp, or any shell/command. - Attach to an already-running session (needs tmux): run the harness inside tmux, then
vibeshare attach <pane>taps it live. Harness-agnostic — it captures the terminal, not the app.
Verified harnesses (all render the real TUI live): Claude Code (claude), OpenAI Codex (codex), Gemini CLI (gemini), aider (requires pip install aider-chat), opencode, Moonshot Kimi (kimi), pi (grok/glm), Sourcegraph amp (requires its own PATH setup). Others (Continue, Goose, Crush, Qwen, Cursor Agent, Warp, Zed, …) wrap identically — they're just terminal programs.
| Need | Command |
|---|---|
| Share a new claude session | vibeshare --public -- claude |
| Share a running session | Run it in tmux + vibeshare attach <pane> |
| Local-only sharing | vibeshare -- <cmd> |
Modes: --public (WebRTC P2P + e2e via getvibe.dev), --tunnel <provider> (12 providers, e2e), or local loopback/LAN. Presence + attributed chat included.
Demo
▶ Watch the launch video — claude is multiplayer now.
https://github.com/pooriaarab/vibeshare/raw/main/branding/launch-video.mp4
Install & build
npm install
npm run build # tsup → dist/ (cli.js, index.js, mcp.js + types)
npm run typecheck # tsc --noEmit
npm test # vitest
CLI
vibeshare # share your shell, spectate read-only
vibeshare --invite --expire 1h # viewers may request to join; auto-expires
vibeshare --pass hunter2 # passphrase second factor
vibeshare -- npm test # share a specific command
vibeshare --host 0.0.0.0 # share on your LAN (default: loopback only)
vibeshare viewers # who's watching, pending join requests
vibeshare viewers --approve <id> # promote a viewer to collaborator
vibeshare viewers --kick <id> # remove a viewer, live
vibeshare stop # end the share (works from another terminal)
Running vibeshare prints the link:
● local · no data out
sharing: npm test
url: http://127.0.0.1:50613/s/KKxzdjLpr_km
access: spectate (read-only)
expires: until you stop
manage: vibeshare viewers · vibeshare stop
Opening the URL shows a self-contained spectator page (no install for viewers) streaming the session live over SSE, with a "Request to join" button on invite links. First run asks for consent (--yes to skip); the grant is recorded locally in ~/.vibeshare/consent.json and can be revoked any time.
Read-only is real: there is no route that lets a viewer write — the host is the server of record, and promotion to collaborator goes only through a host-approved request (ViewerRegistry.canWrite() is the single gate).
Reliable connectivity (TURN)
--public shares are peer-to-peer with STUN only by default (free, no infra) — that works across most NATs. If viewers sit behind symmetric NATs or isolated networks and get stuck on "waiting for host", add a TURN relay: ICE config is set on the host and automatically propagated to viewers over signaling, so both ends use it.
Precedence, highest first:
--ice-servers '<json>'CLI flag — a JSON array of RTCIceServer objectsVIBESHARE_ICE_SERVERSenv var (same JSON)~/.vibeshare/config.json→"iceServers"key- default:
[{ "urls": "stun:stun.l.google.com:19302" }](STUN only)
// ~/.vibeshare/config.json — self-hosted coturn, or a provider
// (metered.ca, Twilio, Cloudflare Calls TURN, …)
{
"iceServers": [
{ "urls": "stun:stun.l.google.com:19302" },
{
"urls": "turn:turn.example.com:3478",
"username": "vibeshare",
"credential": "long-lived-or-temporary-secret"
}
]
}
The credentials are the host's own (short-lived tokens by convention); they travel over the signaling channel to viewers so the browser can reach the relay. Malformed flag/env JSON is reported and skipped — resolution falls through to the next source, never breaking the share.
npm library
import { createShare, grantConsent } from 'vibeshare';
grantConsent('share from my tool'); // once; local ledger
const { url, feed, viewers, revoke } = await createShare({
session: 'npm test',
access: 'spectate', // or 'invite'
expiry: '1h', // or 'stop'
});
feed.publish('tests starting…');
viewers.on('request', (v) => viewers.approve(v.id));
await revoke();
createShare throws ConsentRequiredError without a share:session grant. Bring your own plumbing with ShareManager, LocalHttpTransport, and FileConsentStore.
MCP server
{
"mcpServers": {
"vibeshare": { "command": "vibeshare-mcp" }
}
}
Tools: vibeshare_create, vibeshare_viewers, vibeshare_stop — so an agent can offer "share this session?". Your MCP client's tool-approval prompt is the consent act (recorded with that note). Approving join requests stays human-only, via the CLI.
Architecture & the vibelive seam
vibeshare owns the link + gate; session content is an ordered feed served to spectators. The one deliberate seam is transport (src/transport.ts):
LocalHttpTransport(implemented, default): spectator page + SSE stream + loopback host-control API, served from your machine. Nothing stored on a server.RelayTransport(lands with vibelive): a dumb e2e relay / p2p mesh handing out publicvibeshare.ioURLs — sameShareTransportinterface, swap-in only. Collaborator input routing is part of that seam and must passViewerRegistry.canWrite().
Everything else — consent, access policy, passphrase gate, expiry teardown, viewer registry, revocation — is fully implemented and tested.
Prototype
The original UX prototype (no build, no network): open docs/prototype.html. Spec: docs/spec.md.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。