Devart MCP Server for SQLite (ADO.NET) for VS Code
com.devart/mcp-sqlite
Schema-aware read/write access to SQLite through Devart dotConnect ADO.NET data provider.
client:VS Code
transport:stdio
runtime:nuget
Install Devart MCP Server for SQLite (ADO.NET) in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "devart-mcp-sqlite-connection",
"description": "DEVART_MCP_SQLITE_CONNECTION",
"password": true
}
],
"servers": {
"mcp-sqlite": {
"type": "stdio",
"command": "dnx",
"args": [
"Devart.Mcp.SQLite",
"--yes"
],
"env": {
"DEVART_MCP_SQLITE_CONNECTION": "${input:devart-mcp-sqlite-connection}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs