Skip to content
VS Code

Devart MCP Server for Dynamics 365 (ADO.NET) for VS Code

com.devart/mcp-dynamics365

Schema-aware read/write access to Dynamics 365 through Devart dotConnect ADO.NET data provider.

client:VS Code transport:stdio runtime:nuget

Install Devart MCP Server for Dynamics 365 (ADO.NET) in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "devart-mcp-dynamics365-connection",
      "description": "DEVART_MCP_DYNAMICS365_CONNECTION",
      "password": true
    }
  ],
  "servers": {
    "mcp-dynamics365": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "Devart.Mcp.Dynamics365",
        "--yes"
      ],
      "env": {
        "DEVART_MCP_DYNAMICS365_CONNECTION": "${input:devart-mcp-dynamics365-connection}"
      }
    }
  }
}

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

Devart MCP Server for Dynamics 365 (ADO.NET) in other clients