MCP Server

The MCP Server is a bridge between NodeLens and Claude Desktop. Once connected, Claude can read your entire project — every Blueprint, every function, every variable, and every note — and help you analyze, document, and generate graph logic without you having to copy and paste anything manually.

What is MCP?

MCP (Model Context Protocol) is an open standard developed by Anthropic that allows AI assistants to connect to external tools and data sources. NodeLens includes a built-in MCP server that Claude Desktop can connect to directly.

Think of it as giving Claude a window into your NodeLens workspace — it can browse your projects, open any function, read its logic, and save results back to disk, all within a normal conversation.

Note: MCP currently works with Claude Desktop only. This is a protocol-level limitation — other AI clients such as ChatGPT or Ollama do not yet support the MCP standard, so this feature cannot be enabled for them regardless of settings.

Setup

You will need Claude Desktop installed and Node.js on your machine. Node.js is free and available at nodejs.org — download the LTS version if you are unsure which one to pick.

  1. Find the Claude Desktop config file.
    Open File Explorer and navigate to:
    %APPDATA%\Claude\
    You are looking for a file called claude_desktop_config.json. If it does not exist, create it — right-click in the folder, select New → Text Document, rename it to claude_desktop_config.json (make sure the .txt extension is removed).
  2. Open the file in a text editor.
    Right-click the file and open it with Notepad or any text editor.
  3. Add the NodeLens MCP server configuration.
    Paste the following into the file (replace the path with your actual NodeLens installation path):
    {
      "mcpServers": {
        "nodelens": {
          "command": "node",
          "args": ["C:\\Users\\YourName\\AppData\\Local\\NodeLens\\mcp-server\\index.js"]
        }
      }
    }
    The mcp-server folder is located inside the NodeLens installation directory, typically at C:\Users\YourName\AppData\Local\NodeLens\.
  4. Save the file and restart Claude Desktop.
    Close Claude Desktop completely and reopen it. After restarting, open a new conversation and look for the NodeLens icon in the tools area — this confirms the connection is active.
Tip: NodeLens must be running (open on your taskbar) for Claude Desktop to communicate with it. If Claude reports that it cannot reach NodeLens, check that the app is open.

What You Can Ask Claude to Do

Once connected, you can talk to Claude in plain language. Here are some things you can ask:

Best Practices

On this page
What is MCP? Setup What You Can Ask Best Practices