NoLag MCP
OfficialNoLag MCP Server
A hosted Model Context Protocol (MCP) server for NoLag. Connect Claude Desktop, Cursor, or any MCP-compatible client and let an AI agent manage your realtime infrastructure directly: create apps, rooms, and actors, publish messages, dispatch agent tasks, and manage access scopes, all through natural language.
Homepage: https://nolag.app
Full setup guide: https://nolag.app/docs/agents/mcp-setup
Get an API key: https://portal.nolag.app (Settings → API Keys)
What is NoLag?
NoLag is realtime messaging infrastructure and the coordination layer for AI agents: pub/sub over WebSocket with presence, rooms, and quality-of-service delivery, high level SDKs for chat, notifications, and dashboards, and agent patterns to dispatch work, share state, observe decisions, and gate actions. SDKs for JavaScript, Go, and Python. This MCP server exposes a set of tools so an AI client can operate that infrastructure for you.
Related MCP server: Agent-Comm-Hub
Endpoints
The server is remote (hosted). It supports two transports:
SSE:
GET https://api.nolag.app/mcp/sseStreamable HTTP:
POST https://api.nolag.app/mcp
Authentication uses a project-level API key (format nl_live_yourKeyId.yourSecret),
created in the Portal.
Connect
Claude Desktop / Claude Code
Add this to your MCP configuration (claude_desktop_config.json, or .mcp.json
in your project root for Claude Code):
{
"mcpServers": {
"nolag": {
"command": "npx",
"args": [
"mcp-remote",
"https://api.nolag.app/mcp/sse?token=nl_live_yourKeyId.yourSecret"
]
}
}
}mcp-remote bridges the SSE transport to stdio and installs automatically via
npx on first run. Replace the token with your API key.
Cursor
Add the same block to .cursor/mcp.json.
Custom HTTP client
curl -X POST https://api.nolag.app/mcp \
-H "Authorization: Bearer nl_live_yourKeyId.yourSecret" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":"1","method":"initialize","params":{}}'Run it locally (stdio)
Prefer a local stdio server over the hosted endpoint? This repo ships a thin
bridge that forwards to https://api.nolag.app/mcp. Listing tools needs no key;
tool execution uses your key from NOLAG_API_KEY.
{
"mcpServers": {
"nolag": {
"command": "npx",
"args": ["-y", "@nolag/mcp"],
"env": { "NOLAG_API_KEY": "nl_live_yourKeyId.yourSecret" }
}
}
}Or with Docker:
docker build -t nolag-mcp .
docker run -i -e NOLAG_API_KEY=nl_live_yourKeyId.yourSecret nolag-mcpTools
The server exposes tools across NoLag's resources:
Apps — create, list, update, and delete apps.
Rooms — create, list, update, and delete rooms.
Actors — create, list, update, and delete client identities and access tokens.
Topics and messaging — publish messages to topics.
Agents — dispatch tasks and coordinate multi-agent work.
Access scopes — manage tenant isolation.
To verify your connection, ask your client to "list my NoLag apps" or "create an agent actor".
Links
Docs: https://nolag.app/docs
MCP setup guide: https://nolag.app/docs/agents/mcp-setup
AI agents guide: https://nolag.app/docs/agents
Portal: https://portal.nolag.app
License
MIT. See LICENSE.
This server cannot be installed
Maintenance
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
- AlicenseBqualityBmaintenanceBuild production-grade multi-agent communication infrastructure in minutes. Real-time messaging, task scheduling, shared memory, and trust-based evolution — all via MCP + SSE.Last updated583MIT
- AlicenseAqualityDmaintenanceSlack for AI agents — rooms, messaging and context sharing for multi-agent collaboration.Last updated6MIT
- Alicense-qualityDmaintenanceEnables real-time communication and orchestration of multiple AI agents with a web dashboard for monitoring agent activities, tasks, and artifacts.Last updatedMIT
Related MCP Connectors
Ephemeral REST chatrooms for AI agents to coordinate. Share a room URL — agents talk live.
Build, validate, and deploy multi-agent AI solutions from any AI environment.
Agent registry with Nostr identity, reputation, escrow, observability, and Lightning payments.
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/NoLagApp/nolag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server