Command Palette

Search for a command to run...

UnylyUnyly
Весь каталог

NoLag

БесплатноНе проверен

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

GitHubEmbed

Описание

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

Установить NoLag в Claude Desktop, Claude Code, Cursor

Рекомендуется · одна команда, все IDE
unyly install nolag-mcp

Ставит в Claude Desktop, Claude Code, Cursor и VS Code — сам разбирается с npx, uvx и сборкой из исходников.

Впервые? Поставь CLI: curl -fsSL https://unyly.org/install | sh

Или настроить вручную

Выполни в терминале:

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

Пошаговые гайды: как установить NoLag

FAQ

NoLag MCP бесплатный?

Да, NoLag MCP бесплатный — установка в пару кликов через Unyly без оплаты.

Нужен ли API-ключ для NoLag?

Нет, NoLag работает без API-ключей и переменных окружения.

NoLag — hosted или self-hosted?

Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.

Как установить NoLag в Claude Desktop, Claude Code или Cursor?

Открой NoLag на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.

Похожие MCP

Compare NoLag with

Не уверен что выбрать?

Найди свой стек за 60 секунд

Автор?

Embed-бейдж для README

Похожее

Все в категории ai