Websocket MCP World — modern MCP over Websocket
A lightweight, secure, and developer-friendly MCP (Message & Control Proxy) delivered over WebSocket — designed for fast integration and predictable performance.
WebSocket-first
Seamless socket connectivity for browsers & servers.
Small & predictable
Minimal protocol overhead — great for edge deployments.
Secure by design
TLS + simple auth flows — built for safe production transitions.
Developer friendly
Tiny API, clear docs, fast onboarding for teams.
We are iterating fast. Sign up to get notified and request access.
// Minimal browser-side example (illustrative)
const ws = new WebSocket("wss://mcp.example/ws?token=YOUR_TOKEN");
ws.addEventListener('open',()=> console.log('connected'));
ws.addEventListener('message', e => console.log('msg', e.data));
ws.addEventListener('close', ()=> console.log('disconnected'));
ws.send(JSON.stringify({type:'hello', body:'hi from client'}));