Command Palette

Search for a command to run...

UnylyUnyly
Browse all

NoLag

FreeNot checked

Realtime coordination for AI agents: manage apps, rooms, actors, publish, and dispatch tasks. Visit https://nolag.app and setup your account.

GitHubEmbed

About

Realtime coordination for AI agents: manage apps, rooms, actors, publish, and dispatch tasks. Visit https://nolag.app and setup your account.

README

NoLagApp/nolag-mcp 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.

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.

Endpoints

The server is remote (hosted). It supports two transports:

  • SSE: GET https://api.nolag.app/mcp/sse
  • Streamable 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-mcp

Tools

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

License

MIT. See LICENSE.

from github.com/NoLagApp/nolag-mcp

Install NoLag in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install nolag-mcp

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add nolag-mcp -- npx -y github:NoLagApp/nolag-mcp

Step-by-step: how to install NoLag

FAQ

Is NoLag MCP free?

Yes, NoLag MCP is free — one-click install via Unyly at no cost.

Does NoLag need an API key?

No, NoLag runs without API keys or environment variables.

Is NoLag hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install NoLag in Claude Desktop, Claude Code or Cursor?

Open NoLag on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare NoLag with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs