NEXUS
NEXUS enhances AI coding agents with semantic code indexing, context engineering, change impact analysis, persistent memory, safe execution, and deterministic orchestration through 31 MCP tools.
README
NEXUS — God-Tier MCP Server for Agentic Coding Agents
The most powerful, advanced, and robust MCP server for CLI coding agents.
NEXUS gives your AI coding agent capabilities it structurally lacks: deep code understanding, change-impact awareness, persistent memory, engineered context, verified execution, and deterministic orchestration.
31 tools · 10 families · 20+ languages · zero native dependencies
Quick Install (Cline CLI / Claude Desktop / Cursor / etc.)
git clone https://github.com/Senpai-Sama7/nexus-mcp-server.git
cd nexus-mcp-server
npm install
npm run build
# Install MCP config for all detected clients (Cline CLI, Claude Desktop, Cursor, Windsurf, Gemini, OpenCode)
./install-mcp.sh /path/to/project1 /path/to/project2
The install-mcp.sh script writes a cline_mcp_settings.json (and equivalents for other clients) that registers one NEXUS MCP server instance per workspace. Each instance points at a different NEXUS_WORKSPACE so you get a separate code index per project.
Manual Configuration
Cline CLI (~/.cline/cline_mcp_settings.json)
{
"mcpServers": {
"nexus": {
"command": "node",
"args": ["/path/to/nexus-mcp-server/dist/server.js"],
"env": { "NEXUS_WORKSPACE": "/path/to/your/project" },
"disabled": false
},
"nexus-other-project": {
"command": "node",
"args": ["/path/to/nexus-mcp-server/dist/server.js"],
"env": { "NEXUS_WORKSPACE": "/path/to/another/project" },
"disabled": false
}
}
}
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json on macOS)
Same mcpServers format as above.
Cline VSCode extension
~/.config/Code/User/globalStorage/saoudrizwan.claude-dev/settings/cline_mcp_settings.json — same format.
Claude Code (.mcp.json in your project root)
{
"mcpServers": {
"nexus": {
"command": "node",
"args": ["./nexus-mcp-server/dist/server.js"],
"env": { "NEXUS_WORKSPACE": "${workspaceFolder}" }
}
}
}
OpenCode (~/.config/opencode/opencode.jsonc)
OpenCode uses a different MCP schema — mcp keyed by server name, command
as an array, environment under environment, plus enabled/timeout:
{
"mcp": {
"nexus": {
"type": "local",
"command": ["node", "/path/to/nexus-mcp-server/dist/server.js"],
"environment": {
"NEXUS_WORKSPACE": "/path/to/your/project",
"NEXUS_LOG_LEVEL": "info"
},
"enabled": true,
"timeout": 15000
},
"nexus-other-project": {
"type": "local",
"command": ["node", "/path/to/nexus-mcp-server/dist/server.js"],
"environment": {
"NEXUS_WORKSPACE": "/path/to/another/project",
"NEXUS_LOG_LEVEL": "info"
},
"enabled": true,
"timeout": 15000
}
}
}
Gemini CLI (~/.gemini/settings.json)
Same mcpServers shape as Cline CLI:
{
"mcpServers": {
"nexus": {
"command": "node",
"args": ["/path/to/nexus-mcp-server/dist/server.js"],
"env": { "NEXUS_WORKSPACE": "/path/to/your/project", "NEXUS_LOG_LEVEL": "info" }
},
"nexus-other-project": {
"command": "node",
"args": ["/path/to/nexus-mcp-server/dist/server.js"],
"env": { "NEXUS_WORKSPACE": "/path/to/another/project", "NEXUS_LOG_LEVEL": "info" }
}
}
}
Cursor (~/.cursor/mcp.json)
Windsurf (~/.codeium/windsurf/mcp_config.json)
Both use the same mcpServers format as Cline CLI above.
Why NEXUS?
Every current coding agent has 10 structural gaps. NEXUS fills all 10:
- Agents read raw text → NEXUS builds a semantic symbol/reference/dependency graph
- Agents edit blind → NEXUS computes blast radius before changes
- Agents forget everything between sessions → NEXUS persists namespaced memory
- Agents fetch context greedily → NEXUS ranks and budgets context (repo map, context packs)
- Agents can't verify structurally → NEXUS parses test/lint/typecheck output into structured diagnostics
- Agents do serial work → NEXUS runs deterministic parallel fan-out + persistent task DAGs
- Agents leak secrets / touch sensitive files → NEXUS scans, jails, and warns
- Agents get huge unreadable tool dumps → NEXUS paginates with cursors + head/tail truncation
- Agents lose state on crash → NEXUS snapshots files and checkpoints task state
- Agents can't see the project at a glance → NEXUS workspace health + map on demand
Environment Variables
| Variable | Default | Description |
|---|---|---|
NEXUS_WORKSPACE |
process.cwd() |
Workspace root (the jail boundary) |
NEXUS_LOG_LEVEL |
info |
One of: debug, info, warn, error, silent |
The 31 Tools
A. Workspace (3)
nexus_workspace_overview— languages, LOC, git state, index healthnexus_search— regex/literal/glob content searchnexus_read_span— line-range read with encoding + injection detection
B. Code Intelligence (6)
nexus_index_build— build/refresh the code indexnexus_file_symbols— symbol outline of a filenexus_find_symbols— fuzzy workspace-wide symbol searchnexus_references— all reference sites of a symbolnexus_call_graph— callers/callees, depth-Nnexus_dependency_graph— import graph: deps / dependents
C. Context Engineering (2) ⭐
nexus_repo_map— ranked repo map within a token budget (Aider-style)nexus_context_pack— task-focused context bundle
D. Change Safety (4)
nexus_impact_analysis— blast radius before editingnexus_git_diff— smart diff with stats + paginated hunksnexus_snapshot/nexus_restore— checkpoint and rollback
E. Execution & Verification (4)
nexus_exec— run commands with timeout + secret redactionnexus_exec_poll— poll/kill background jobsnexus_test_run— detect framework (jest/vitest/pytest/cargo/go) → structured failuresnexus_diagnose— tsc/eslint → parsed{file, line, col, severity, rule, message}
F. Memory (3)
nexus_memory_write/nexus_memory_search/nexus_memory_forget— persistent knowledge
G. Orchestration (4)
nexus_task_submit/nexus_task_update/nexus_task_status— DAG task managementnexus_fanout— parallel map with concurrency limit
H. Security & Hygiene (2)
nexus_secret_scan— scan for AWS/GitHub/OpenAI/JWT/keysnexus_audit_manifest— dependency risk heuristics (typosquat, unpinned)
I. Refactor (1)
nexus_rename_symbol— preview-first, graph-scoped rename
J. Meta (2)
nexus_server_status— self-diagnosticsnexus_guide— on-demand playbook for workflows
Recommended Workflows
New Feature
1. nexus_workspace_overview
2. nexus_repo_map
3. nexus_context_pack focusFiles:[...]
4. nexus_dependency_graph file:...
5. nexus_snapshot (checkpoint)
6. Implement (using nexus_read_span, nexus_search)
7. nexus_test_run + nexus_diagnose
8. nexus_secret_scan
9. nexus_memory_write (record decisions)
Refactor
1. nexus_index_build force:true
2. nexus_find_symbols name:"oldName"
3. nexus_impact_analysis target:"oldName" mode:"symbol"
4. nexus_snapshot
5. nexus_rename_symbol (preview!)
6. nexus_test_run
Debug
1. nexus_diagnose
2. nexus_test_run
3. nexus_search pattern:"error message"
4. nexus_call_graph symbol:... direction:callers
5. nexus_memory_write (record the fix)
Architecture Highlights
- Zero native dependencies — pure JS regex-based parser works on any platform
- 20+ languages supported — TS/JS/Python/Go/Rust/Java/C/C++/C#/Ruby/PHP/Swift/Kotlin/Lua/Shell/...
- Path jail — every file op goes through symlink-resolved boundary check
- Sensitive file protection —
.env, keys, credentials blocked by default - Indirect prompt injection guard — file contents/command outputs scanned for attack patterns
- Secret redaction — 15+ detectors (AWS, GitHub, OpenAI, Anthropic, JWT, etc.)
- Process-group kill — timeouts kill entire process trees, no leaks
- Atomic persistence — tmp-file + rename for index, memory, snapshots
- LRU memory caps — never unbounded growth
- Tool annotations — truthful
readOnlyHint/destructiveHint/idempotentHint/openWorldHint - Multi-workspace — run multiple NEXUS instances, each indexing a different project
Testing
npm run test:client
Validates all 31 tools via the full JSON-RPC protocol end-to-end. 100% pass rate.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.