Skip to content
VS Code

Devart MCP Server for SQL Server (ADO.NET) for VS Code

com.devart/mcp-sqlserver

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

client:VS Code transport:stdio runtime:nuget

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

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "devart-mcp-sqlserver-connection",
      "description": "DEVART_MCP_SQLSERVER_CONNECTION",
      "password": true
    }
  ],
  "servers": {
    "mcp-sqlserver": {
      "type": "stdio",
      "command": "dnx",
      "args": [
        "Devart.Mcp.SqlServer",
        "--yes"
      ],
      "env": {
        "DEVART_MCP_SQLSERVER_CONNECTION": "${input:devart-mcp-sqlserver-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 SQL Server (ADO.NET) in other clients