Skip to content
VS Code

NEAT for VS Code

io.github.neat-technologies/neat

Fused graph of your codebase — static code + runtime OTel — for AI agents, over MCP.

client:VS Code transport:stdio runtime:npm

Install NEAT in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "neat-core-url",
      "description": "NEAT_CORE_URL",
      "password": true
    }
  ],
  "servers": {
    "neat": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@neat.is/mcp"
      ],
      "env": {
        "NEAT_CORE_URL": "${input:neat-core-url}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

NEAT in other clients