The libdatachannel MCP server covers libdatachannel, a standalone C++ implementation of WebRTC Data Channels and media transport. Each version is a release tag (e.g. v0.24.5). Its dependencies are git submodules (usrsctp, libjuice, plog…) that are not fetched, so only its own C++ source (src/ + the public API under include/rtc) is indexed. Shares this site's OAuth credentials — connect your MCP client at https://webrtc.page/libdatachannel.
HTTP transport with OAuth 2.1 (PKCE). Dynamic client registration is not supported — register a client first, then pass its client_id (and secret) in your MCP client config. Localhost redirect URIs are allowed for any port.
One registered client works for every server on this site — just point the URL at /libdatachannel.
1. Register a client and grab client_id / client_secret at /profile →
2. Configure your client with those credentials (examples below).
Claude Code — CLI
MCP_CLIENT_SECRET=<your-client-secret> \ claude mcp add --transport http \ --client-id <your-client-id> --client-secret --callback-port 8090 \ libdatachannel https://webrtc.page/libdatachannel
Claude Code (.mcp.json)
{
"mcpServers": {
"libdatachannel": {
"type": "http",
"url": "https://webrtc.page/libdatachannel",
"oauth": { "clientId": "<your-client-id>", "callbackPort": 8090 }
}
}
}| Tag | AST index | Downloaded | Release notes |
|---|---|---|---|
v0.24.5default | indexed | 2026-06-29 | release ↗ |
v0.24.4 | indexed | 2026-06-29 | release ↗ |
v0.24.3 | indexed | 2026-06-29 | release ↗ |
v0.24.2 | indexed | 2026-06-29 | release ↗ |
v0.24.1 | indexed | 2026-06-29 | release ↗ |