Skip to content
VS Code

NDI-MCP-Server for VS Code

io.github.creintel/ndi-mcp-server

Commercial real estate deal search, comp lookup, and scoring for the Northeast US

client:VS Code transport:stdio runtime:pypi

Install NDI-MCP-Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ndi-api-key",
      "description": "NDI_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "ndi-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "ndi-mcp-server"
      ],
      "env": {
        "NDI_API_KEY": "${input:ndi-api-key}"
      }
    }
  }
}

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

NDI-MCP-Server in other clients