Webrtc MCP Chat MCP Server

A remote WebRTC chat server with secure temporary rooms and MCP support for background agents

Local serverstdio

What is the Webrtc MCP Chat MCP server?

A remote WebRTC chat server with secure temporary rooms and MCP support for background agents. The webrtc mcp chat mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 8 defined tools rather than through you.

What it actually does

A remote-first WebRTC chat server with secure temporary rooms and full MCP (Model Context Protocol) support, designed for background agents and real-time communication.

Its toolset

Everything the assistant can do here goes through one of these:

  • create_temp_chat — Create secure temporary room
  • join_temp_chat — Join temporary room with token
  • send_temp_message — Send message to secure room
  • get_temp_room_info — Get room status and users
  • check_server_status — Verify server health
  • join_public_chat — Join permanent public room
  • send_public_message — Send to public room
  • Response — The Response tool exposed by this server

Configuration

You will need 3 environment variables: CHAT_SERVER_URL, ROOM_ID, ROOM_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Adding it to your client

The server ships on npm as webrtc-mcp-chat, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

When to reach for it

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Webrtc MCP Chat's toolset — create_temp_chat, join_temp_chat, send_temp_message and 5 more — is a fair guide to whether it matches your workflow. It is maintained by brysgo; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against Webrtc MCP Chat's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the webrtc mcp chat mcp server does with a few real requests.

Available tools

ToolWhat it does
create_temp_chatCreate secure temporary room
join_temp_chatJoin temporary room with token
send_temp_messageSend message to secure room
get_temp_room_infoGet room status and users
check_server_statusVerify server health
join_public_chatJoin permanent public room
send_public_messageSend to public room
ResponseThe Response tool exposed by this server.

How to install the Webrtc MCP Chat MCP server

Or use without global install:
```json
{
  "mcpServers": {
    "webrtc-chat": {
      "command": "npx",
      "args": ["webrtc-mcp-chat"],
      "env": {
        "CHAT_SERVER_URL": "https://your-deployed-app.com"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
CHAT_SERVER_URLEndpoint or connection string the server talks to.Yes
ROOM_IDConfiguration value read at startup.Optional
ROOM_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use Webrtc MCP Chat to create temp chat.
  • Use Webrtc MCP Chat to join temp chat.
  • Use Webrtc MCP Chat to send temp message.

Frequently asked questions

It connects Webrtc MCP Chat to MCP-compatible AI assistants such as Claude and Cursor, exposing 8 tools (create_temp_chat, join_temp_chat, send_temp_message, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Webrtc MCP Chat directly.