Skip to content
VS Code

JAJ Dataverse Dev MCP for VS Code

io.github.jjohnsen/jaj-dataverse-dev-mcp

Xrm/Power Platform/Dataverse MCP for devs, Azure CLI auth, Web API and multi-environment support

client:VS Code transport:stdio runtime:npm

Install JAJ Dataverse Dev MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "dataverse-environments-path",
      "description": "DATAVERSE_ENVIRONMENTS_PATH",
      "password": true
    }
  ],
  "servers": {
    "jaj-dataverse-dev-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "jaj-dataverse-dev-mcp"
      ],
      "env": {
        "DATAVERSE_ENVIRONMENTS_PATH": "${input:dataverse-environments-path}"
      }
    }
  }
}

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

JAJ Dataverse Dev MCP in other clients