Command Palette

Search for a command to run...

UnylyUnyly
Browse all

N2n Nexus

FreeNot checked

A local digital asset hub for multi-AI assistant collaboration, offering real-time meeting rooms and structured project vaults with zero-configuration setup.

GitHubEmbed

About

A local digital asset hub for multi-AI assistant collaboration, offering real-time meeting rooms and structured project vaults with zero-configuration setup.

README

n2n-nexus logo

n2n-nexus

Local-first MCP coordination hub from N2NS Lab for multi-AI assistant collaboration across IDEs, machines, and projects.

npm version npm total downloads license MCP Protocol node version

中文版


One daemon. Many assistants. Shared project state.

n2n-nexus is an open-source Model Context Protocol (MCP) coordination server for developers and teams who use multiple AI coding assistants across IDEs, machines, and projects. Use it when Claude Desktop, Claude Code, Cursor, VS Code, Windsurf, JetBrains, or other MCP-enabled clients need a shared local coordination layer instead of isolated per-chat context.

📚 Contents

💡 What is n2n-nexus?

n2n-nexus gives AI assistants a shared coordination workspace. A long-running local daemon owns project state, meetings, messages, tasks, shared docs, and project assets. Lightweight MCP adapters connect each IDE or assistant to the same daemon.

  • Coordinate multiple AI assistants working on the same project.
  • Share project manifests, decisions, and assets across IDEs and machines.
  • Keep decisions, proposals, and updates in a local meeting and message log.
  • Run the daemon once; connect adapters from Windows, WSL, SSH hosts, or multiple editors.
  • Avoid giving each assistant broad filesystem or backend access.

🏗️ Architecture

┌──────────────────────────────────────┐
│          n2n-nexus daemon            │
│  Standalone HTTP server · always on  │
│  Owns data, tools, tasks, messages   │
└──────────────┬───────────────────────┘
               │ HTTP (NEXUS_ENDPOINT)
       ┌───────┼───────┐
       ▼       ▼       ▼
    MCP-A   MCP-B   MCP-C
   (Win)   (WSL)   (SSH/VM)
  Stateless adapter per IDE
  • Daemon is the source of truth: start it once and keep it running.
  • MCP adapters are stateless: each IDE starts an adapter through npx, then forwards tool calls to the daemon.
  • Cross-environment by design: point NEXUS_ENDPOINT at the same daemon from different machines or shells. The daemon binds to localhost by default; use --host 0.0.0.0 only on a trusted network.

🚀 Quick start

1. Start the daemon

npx n2n-nexus daemon --port 5688

2. Configure an MCP client

{
  "mcpServers": {
    "n2n-nexus": {
      "command": "npx",
      "args": ["-y", "n2n-nexus", "mcp"],
      "env": {
        "NEXUS_ENDPOINT": "http://127.0.0.1:5688"
      }
    }
  }
}

The adapter can start before the daemon. It loads the daemon tool list once the daemon becomes reachable.

Cross-environment endpoint examples

Scenario NEXUS_ENDPOINT
Same machine http://127.0.0.1:5688
WSL IDE to Windows daemon http://host.docker.internal:5688
Windows IDE to WSL daemon http://<WSL-IP>:5688
Remote machine http://<Server-IP>:5688

🛠️ Toolset

The daemon exposes 21 tools, grouped by purpose:

Group Tools Purpose
Session & topology register_session_context, get_global_topology Declare the active project before other calls; read the project list or a detailed per-project subgraph.
Projects & assets search_projects, update_project, rename_project, sync_project_assets, upload_project_asset Find, update, and rename projects; sync manifests and internal docs; upload binary assets.
Global docs sync_global_doc, update_global_strategy Create or update shared global documents and the master strategy document.
Messaging send_message, read_messages Post and read meeting and global messages.
Meetings start_meeting, end_meeting, archive_meeting, reopen_meeting Open, close, archive, and reopen meeting sessions.
Tasks create_task, get_task, list_tasks, cancel_task Create and poll async background tasks.
Maintenance host_maintenance, host_delete_project Prune or clear system logs; delete a project.

See Tools reference for parameter schemas and call examples.

💾 Data storage

Default storage root:

Platform Path
Linux / WSL ~/.n2n-nexus
Windows %USERPROFILE%\.n2n-nexus
macOS ~/.n2n-nexus

Override with --root <path> or NEXUS_ROOT.

~/.n2n-nexus/
├── global/
│   ├── blueprint.md
│   ├── docs_index.json
│   └── docs/
├── projects/
│   └── {project-id}/
│       ├── manifest.json
│       ├── internal_blueprint.md
│       └── assets/
├── registry.json
└── nexus.db

🏷️ Project ID conventions

Project IDs follow [prefix]_[name].

Prefix Category Example
web_ Websites web_datafrog.io
api_ Backend services api_user-auth
mcp_ MCP servers mcp_nexus
lib_ Libraries / SDKs lib_crypto-core
chrome_ Chrome extensions chrome_evisa-helper
vscode_ VS Code extensions vscode_super-theme
desktop_ Desktop apps desktop_main-hub
infra_ Infrastructure / DevOps infra_k8s-config
doc_ Documentation doc_coding-guide

💻 CLI reference

# Start daemon
n2n-nexus daemon [--port 5688] [--root ~/.n2n-nexus] [--host 127.0.0.1]

# Start MCP adapter
NEXUS_ENDPOINT=http://127.0.0.1:5688 n2n-nexus mcp

Environment variables

Variable Description Default
NEXUS_ENDPOINT Daemon URL for MCP adapter http://127.0.0.1:5688
NEXUS_ROOT Storage root for daemon ~/.n2n-nexus
NEXUS_HOST Daemon bind host 127.0.0.1
NEXUS_INSTANCE_ID Override MCP instance ID auto-generated

🔐 Security and governance notes

  • n2n-nexus stores coordination data locally by default.
  • Do not put secrets, credentials, customer data, or private tokens in meeting messages or project assets unless your local policy allows it.
  • Destructive tools such as project deletion should be used through explicit review workflows.
  • Exposing the daemon beyond localhost is an operational choice; restrict network access when using remote endpoints.
  • Treat project manifests and internal docs as potentially sensitive implementation data.

🌐 Real-world example

The docs include a recorded multi-agent session that shows n2n-nexus in action. Four AI assistants — running in different IDEs and assigned to different projects — used a shared n2n-nexus daemon to coordinate in real time.

What to look for in the session:

  • Shared coordination space: each assistant registered its active project with register_session_context, then read and wrote to the same daemon throughout the session.
  • Structured message categories: PROPOSAL, DECISION, UPDATE, and MEETING_START tags let assistants signal intent, not just post text.
  • SYSTEM entries: lines like [Augment] Synced global doc: edge-sync-protocol-v1 record actual tool calls — the daemon logging its own state changes into the meeting stream.
  • Async debugging across instances: when one assistant hit an auth error, others responded with fixes in real time, each from their own IDE context.
  • Two output formats: the discussion log is the raw chronological stream; the meeting minutes are a structured summary derived from it, showing how a long session distills into decisions and action items.
File What it shows
Discussion Log The full chronological stream: proposals, debug exchanges, decisions, and SYSTEM tool entries
Meeting Minutes The structured output: participants, key decisions, test results, and action items

🔧 Local development

git clone https://github.com/n2ns/n2n-nexus.git
cd n2n-nexus
npm install
npm run build

# Run daemon
node build/index.js daemon --root /tmp/nexus-test --port 5688

# Run MCP adapter
NEXUS_ENDPOINT=http://127.0.0.1:5688 node build/index.js mcp

📖 Related docs

📄 License

This project is licensed under the Apache-2.0 License.


Built by N2NS Lab, the open-source lab of datafrog.io for practical AI developer tools.

from github.com/n2ns/n2n-nexus

Install N2n Nexus in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install n2n-nexus

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 n2n-nexus -- npx -y n2n-nexus

FAQ

Is N2n Nexus MCP free?

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

Does N2n Nexus need an API key?

No, N2n Nexus runs without API keys or environment variables.

Is N2n Nexus hosted or self-hosted?

Self-hosted: the server runs locally on your machine via the install command above.

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

Open N2n Nexus 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 N2n Nexus with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All ai MCPs