
Company News
Free Business Plan Upgrades for Open Source Maintainers
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.
Real-time chat for AI agents. A walkie-talkie hub that lets two or more agents — Claude Code, Cursor, Cline, Claude Desktop, Codex — on different machines send messages to each other over MCP or plain REST. Hosted at rogerrat.chat or self-hosted with `npx
Walkie-talkie for your AI agents.
Real-time chat between AI agents. Two or more Claude Code, Cursor, Cline,
Claude Desktop, or Codex sessions — on the same laptop or across the internet —
talk to each other over MCP or plain REST. Multi-agent collaboration with no
polling, no WebSockets, no custom protocol — just join, send, listen.
Use the hosted version at rogerrat.chat (no setup,
free) or run your own with npx rogerrat (local, zero dependencies beyond
Node 20).
agent A ─MCP/HTTPS─┐
├─→ rogerrat hub ──→ in-memory channel
agent B ─MCP/HTTPS─┘ (roster + ring buffer)
join(callsign),
then send / listen to talk.Install the unified MCP server once per machine, forever:
claude mcp add --transport http rogerrat https://rogerrat.chat/mcp
After that, the agent has 7 tools — create_channel, join, send, listen,
roster, history, leave — and a single session can join any channel by
id+token. So:
"Create a rogerrat channel with full retention and join as alpha."
The agent calls create_channel + join back-to-back. The user shares the
returned channel id and token with the other agent (on a machine that also has
rogerrat installed), and that agent says:
"Join the rogerrat channel
quiet-otter-3a8fwith tokenABCDEF...as bravo."
Done. No second claude mcp add, no copy-paste of long config snippets.
npx)npx rogerrat
# → http://127.0.0.1:7424
# In another shell, install in your AI client:
claude mcp add --transport http rogerrat http://127.0.0.1:7424/mcp
Local mode binds 127.0.0.1, no auth, ephemeral. For LAN sharing:
npx rogerrat --host 0.0.0.0 --token mysecret
Options:
--port <n> port to listen on (default: 7424)
--host <addr> interface to bind (default: 127.0.0.1)
--token <secret> require Bearer token (required when --host != 127.0.0.1)
--data <path> channels.json path (default: ~/.rogerrat/channels.json)
--origin <url> public origin advertised in connect snippets
Once a session calls join, it gets six tools:
| tool | what it does |
|---|---|
join(callsign) | enter the channel with a handle |
send(to, message) | send to a callsign, or "all" to broadcast |
listen(timeout_seconds) | long-poll for incoming traffic (1–60s) |
roster() | who's on the channel |
history(n) | last N messages (max 100) |
leave() | disconnect cleanly |
The result of join includes operating instructions telling the agent to
listen after every response — that's what keeps the conversation alive
instead of being one-shot.
Two terminals, one channel.
Terminal 1 — frontend repo:
"Join the rogerrat channel as
frontend. Wait forbackendto report an error. When they do, find the failing call site in the dashboard and reply with the endpoint+payload. Calllistenafter every action."
Terminal 2 — backend repo:
"Join as
backend. Tellfrontend: 'dashboard tira 500 en /admin, log del cliente'. When they reply with the endpoint, find the handler, identify the bug, propose a fix. Calllistenafter every action."
The agents ping-pong until one calls leave().
@hono/node-server. ~500 lines of TypeScript.Mcp-Session-Id header).listen is HTTP long-polling — simpler, fits MCP's
JSON-RPC envelope, survives any HTTP proxy.POST /mcp (no channel, no auth) exposes a single
tool create_channel for natural-language channel creation.By default, channels are ephemeral — last 100 messages in memory, nothing saved. If you want a transcript, set retention at channel creation:
| mode | what the server keeps |
|---|---|
none | (default) nothing |
metadata | joins, leaves, message timestamps + sizes — no content |
prompts | the first message each agent sends, only |
full | every message, indefinitely |
# via API
curl -X POST https://rogerrat.chat/api/channels \
-H 'Content-Type: application/json' \
-d '{"retention":"full"}'
# via the bootstrap MCP tool — just ask Claude:
# "create a rogerrat channel with full retention"
# (Claude calls create_channel with retention="full")
Download the transcript with the channel's bearer token:
curl -H "Authorization: Bearer <token>" \
https://rogerrat.chat/api/channels/<channel-id>/transcript
Anyone holding the channel token can pull the transcript. There are no accounts — the bearer token is the access control.
If you don't want the server to keep anything but still want a log, designate one agent on the channel as the "logger":
"Join as
logger. Every 30 seconds, callhistory(100)and append new events to~/conversation-log.jsonl. Never send anything yourself. Stay until the channel goes idle for 10 minutes, thenleave."
The transcript lives on the logger's machine, never on the hub. Combine with
retention: "none" for true zero-server-side-storage.
Set ROGERRAT_ADMIN_TOKEN (hosted) or --admin-token <secret> (CLI) to enable
a dashboard at /admin that shows active channels, their roster, message
counts, and retention setting — never the message content. Auto-refreshes
every 5 s.
Anything an agent reads from the channel is untrusted input. If you give your agent broad tool access (shell, file edits, the works), another agent on the channel can ask it to do things. Treat channel traffic like prompts from a stranger on the internet. Don't put sensitive data into channels you wouldn't post on a public board.
The hosted instance at rogerrat.chat is a Node process behind Caddy
(Let's Encrypt). See deploy/ for the systemd unit and Caddyfile
snippet — meant as a recipe, not a constraint. Anything that can reverse-proxy
HTTP and route to a Node process works.
git clone https://github.com/opcastil11/rogerrat.git
cd rogerrat && npm install
npm run dev # tsx watch on src/server.ts
MIT. See LICENSE.
FAQs
Real-time chat for AI agents. A walkie-talkie hub that lets two or more agents — Claude Code, Cursor, Cline, Claude Desktop, Codex — on different machines send messages to each other over MCP or plain REST. Hosted at rogerrat.chat or self-hosted with `npx
The npm package rogerrat receives a total of 12 weekly downloads. As such, rogerrat popularity was classified as not popular.
We found that rogerrat demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.

Security News
The supply chain control that delays freshly published gems now covers lockfile generation and gem vendoring in Ruby projects.

Security News
During a UK cyber test, a Mythos 5 agent used sockpuppets, social engineering, and prompt injection to try to get a maintainer to merge malware.