mimer mcp for VS Code
io.github.mimersql/mimer-mcp
An MCP server with Mimer SQL Database Connectivity
client:VS Code
transport:stdio
runtime:pypi
Install mimer mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "db-dsn",
"description": "DB_DSN",
"password": true
},
{
"type": "promptString",
"id": "db-user",
"description": "DB_USER",
"password": true
},
{
"type": "promptString",
"id": "db-password",
"description": "DB_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "db-host",
"description": "DB_HOST",
"password": true
},
{
"type": "promptString",
"id": "db-port",
"description": "DB_PORT",
"password": true
},
{
"type": "promptString",
"id": "db-protocol",
"description": "DB_PROTOCOL",
"password": true
},
{
"type": "promptString",
"id": "db-pool-initial-con",
"description": "DB_POOL_INITIAL_CON",
"password": true
},
{
"type": "promptString",
"id": "db-pool-max-unused",
"description": "DB_POOL_MAX_UNUSED",
"password": true
},
{
"type": "promptString",
"id": "db-pool-max-con",
"description": "DB_POOL_MAX_CON",
"password": true
},
{
"type": "promptString",
"id": "db-pool-block",
"description": "DB_POOL_BLOCK",
"password": true
},
{
"type": "promptString",
"id": "db-pool-deep-health-check",
"description": "DB_POOL_DEEP_HEALTH_CHECK",
"password": true
},
{
"type": "promptString",
"id": "mcp-log-level",
"description": "MCP_LOG_LEVEL",
"password": true
}
],
"servers": {
"mimer-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"mimer-mcp-server"
],
"env": {
"DB_DSN": "${input:db-dsn}",
"DB_USER": "${input:db-user}",
"DB_PASSWORD": "${input:db-password}",
"DB_HOST": "${input:db-host}",
"DB_PORT": "${input:db-port}",
"DB_PROTOCOL": "${input:db-protocol}",
"DB_POOL_INITIAL_CON": "${input:db-pool-initial-con}",
"DB_POOL_MAX_UNUSED": "${input:db-pool-max-unused}",
"DB_POOL_MAX_CON": "${input:db-pool-max-con}",
"DB_POOL_BLOCK": "${input:db-pool-block}",
"DB_POOL_DEEP_HEALTH_CHECK": "${input:db-pool-deep-health-check}",
"MCP_LOG_LEVEL": "${input:mcp-log-level}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs