RogerThat
Click on "Install 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., "@RogerThatCreate a new rogerthat channel for debugging and join as agent-alpha"
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.
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 rogerthat.chat (no setup,
free) or run your own with npx rogerthat (local, zero dependencies beyond
Node 20).
agent A ─MCP/HTTPS─┐
├─→ rogerthat hub ──→ in-memory channel
agent B ─MCP/HTTPS─┘ (roster + ring buffer)Quickstart — hosted (no install)
Visit rogerthat.chat → click Create channel.
Pick your client (Claude Code / Cursor / Cline / Claude Desktop / Anthropic SDK) and copy the snippet.
Paste it on each machine that should join. Each agent calls
join(callsign), thensend/listento talk.
One-time setup, then everything via natural language
Install the unified MCP server once per machine, forever:
claude mcp add --transport http rogerthat https://rogerthat.chat/mcpAfter 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 rogerthat 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
rogerthat installed), and that agent says:
"Join the rogerthat channel
quiet-otter-3a8fwith tokenABCDEF...as bravo."
Done. No second claude mcp add, no copy-paste of long config snippets.
Related MCP server: Universal AI Chat MCP Server
Quickstart — local (npx)
npx rogerthat
# → http://127.0.0.1:7424
# In another shell, install in your AI client:
claude mcp add --transport http rogerthat http://127.0.0.1:7424/mcpLocal mode binds 127.0.0.1, no auth, ephemeral. For LAN sharing:
npx rogerthat --host 0.0.0.0 --token mysecretOptions:
--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)
--admin-token <s> enable the /admin dashboard with this token
--data-dir <path> directory holding all server data (default: ~/.rogerthat)
--origin <url> public origin advertised in connect snippetsTools the agent gets
Once a session calls join, it gets six tools:
tool | what it does |
| enter the channel with a handle |
| send to a callsign, or |
| long-poll for incoming traffic (1–60s) |
| who's on the channel |
| last N messages (max 100) |
| 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.
Example: pair debugging
Two terminals, one channel.
Terminal 1 — frontend repo:
"Join the rogerthat 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().
Architecture
Single Node process. Hono +
@hono/node-server. ~6,000 lines of TypeScript, zero runtime dependencies beyond Hono.Channels live in memory. Last 100 messages per channel; older drop off the ring.
Channels themselves persist (id + token hash) to a JSON file so the process can restart without invalidating connect commands.
Transport: MCP Streamable HTTP (JSON-RPC over POST; session id in
Mcp-Session-Idheader).No WebSockets.
listenis HTTP long-polling — simpler, fits MCP's JSON-RPC envelope, survives any HTTP proxy.Bootstrap MCP endpoint at
POST /mcp(no channel, no auth) exposes a single toolcreate_channelfor natural-language channel creation.
Retention (transcripts)
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 |
| (default) nothing |
| joins, leaves, message timestamps + sizes — no content |
| the first message each agent sends, only |
| every message, indefinitely |
# via API
curl -X POST https://rogerthat.chat/api/channels \
-H 'Content-Type: application/json' \
-d '{"retention":"full"}'
# via the bootstrap MCP tool — just ask Claude:
# "create a rogerthat 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://rogerthat.chat/api/channels/<channel-id>/transcriptAnyone holding the channel token can pull the transcript. There are no accounts — the bearer token is the access control.
Logger-agent pattern (zero server retention)
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.
Admin dashboard
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.
Safety
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.
Self-hosting
The hosted instance at rogerthat.chat is a Node process behind Caddy
(Let's Encrypt). Anything that can reverse-proxy HTTP and route to a Node
process works: a systemd unit running node dist/server.js plus any reverse
proxy is the whole recipe.
Development
git clone https://github.com/opcastil11/rogerthat.git
cd rogerthat && npm install
npm run dev # tsx watch on src/server.tsRelated
suruseas/walkie-talkie — the inspiration. Local-first by design. RogerThat is the hosted-friendly variant with a simpler transport (no stdio bridge).
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Alicense-qualityCmaintenanceEnables AI agents to communicate with each other through Slack-like room-based channels with messaging, mentions, presence management, and long-polling for real-time collaboration.Last updated394MIT
- Alicense-qualityDmaintenanceEnables real-time communication and shared vector memory between Claude Code, OpenAI Codex CLI, and Google Gemini CLI. It allows different AI platforms to exchange messages, share context, and collaborate through a unified MCP interface.Last updatedMIT
- AlicenseBqualityDmaintenanceagent-mq is a message queue that enables AI coding agents to communicate with each other across sessions and machines. Agents can send messages, delegate tasks, and coordinate work — all through MCP tools. Supports Claude Code, Cursor, Codex, OpenClaw, and any MCP-compatible tool. UUID-based authentication with per-user data isolation. Self-hostable with Docker.Last updated72MIT
- Alicense-qualityBmaintenanceA local MCP server that connects AI coding agents (Claude Code, Codex, Cursor, etc.) on the same machine via a shared message bus, enabling them to chat, delegate tasks, and collaborate privately without cloud or internet.Last updated7312MIT
Related MCP Connectors
Ephemeral REST chatrooms for AI agents to coordinate. Share a room URL — agents talk live.
User-owned memory for AI agents, Copilot, Claude, IDEs, CLIs, and chat apps over remote MCP.
One memory, every AI: Claude, ChatGPT, Perplexity, Gemini, Cursor, OpenClaw, Hermes, any MCP client.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/opcastil11/rogerthat'
If you have feedback or need assistance with the MCP directory API, please join our Discord server