What is the io.github.nrwl/nx-console MCP server?
A Model Context Protocol server implementation for Nx
How to install io.github.nrwl/nx-console
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"nx-console": {
"command": "npx",
"args": [
"-y",
"nx-mcp"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"nx-console": {
"command": "npx",
"args": [
"-y",
"nx-mcp"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"nx-console": {
"command": "npx",
"args": [
"-y",
"nx-mcp"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"nx-console": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"nx-mcp"
]
}
}
}Claude Code
claude mcp add nx-console -- npx -y nx-mcp