nexus-mcp¶
Manage MCP server configuration for gateway mode.
Synopsis¶
Description¶
Configure downstream MCP servers that Nexus-Dev can proxy to via gateway mode. This allows your AI agent to access multiple MCP servers through a single connection.
Commands¶
| Command | Description |
|---|---|
init |
Initialize MCP configuration |
add |
Add a new MCP server |
remove |
Remove an MCP server |
list |
List configured servers |
enable |
Enable a server |
disable |
Disable a server |
nexus-mcp init¶
Create initial MCP configuration.
# Create empty configuration
nexus-mcp init
# Import from global Claude/Cursor config
nexus-mcp init --from-global
Output:
nexus-mcp add¶
Add a new downstream MCP server.
Stdio Transport (Local Process)¶
SSE Transport (Remote Server)¶
nexus-mcp list¶
Show all configured servers.
Output:
MCP Servers:
✅ github (stdio)
Command: npx -y @modelcontextprotocol/server-github
✅ homeassistant (sse)
URL: http://homeassistant.local:8123/mcp
❌ slack (disabled)
Command: npx -y @modelcontextprotocol/server-slack
nexus-mcp enable/disable¶
Toggle server availability.
Configuration File¶
Settings are stored in .nexus/mcp_config.json:
{
"servers": {
"github": {
"transport": "stdio",
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-github"],
"env": {
"GITHUB_PERSONAL_ACCESS_TOKEN": "ghp_..."
},
"enabled": true
}
}
}
See Also¶
- Gateway Tools - Using gateway mode
- nexus-index-mcp - Index tool schemas for search