Skip to content
VS Code

MCP Dataverse for VS Code

io.github.codeurali/dataverse

73 tools for Microsoft Dataverse: CRUD, FetchXML, metadata, audit, batch, role privileges and more.

client:VS Code transport:stdio runtime:npm

Install MCP Dataverse in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "mcp-config-path",
      "description": "MCP_CONFIG_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "dataverse-env-url",
      "description": "DATAVERSE_ENV_URL",
      "password": true
    }
  ],
  "servers": {
    "dataverse": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-dataverse"
      ],
      "env": {
        "MCP_CONFIG_PATH": "${input:mcp-config-path}",
        "DATAVERSE_ENV_URL": "${input:dataverse-env-url}"
      }
    }
  }
}

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

MCP Dataverse in other clients