MCP Database Query Server by Vicus-Brits
35 score
Enables AI agents to query and explore databases including SQLite, PostgreSQL, MySQL, and SQL Server through a secure, read-only workflow. It provides tools for listing connections, inspecting table schemas, and executing SELECT statements directly within VS Code.
Ranked #746 out of 1753 indexed tools.Actively maintained with commits in the last week.
Is this your tool? Claim this listing to add maintainer context, get a verified badge, and unlock analytics.
Claim listing → Signal Breakdown
Installs 0
Freshness today
Issue Health 50%
Stars 1
Platform Breadth 1 platform
Contributors 1
Description Detailed
How to Improve
Contributors medium impact
Stars low impact
Platforms medium impact
Supported Platforms
From the README
# MCP Database Query Server
An MCP (Model Context Protocol) server that lets a VS Code AI agent query databases through a structured, step-by-step workflow.
## Supported Databases
- **SQLite** — via Python's built-in `sqlite3` (always available)
- **PostgreSQL** — via `psycopg2` (optional — install `psycopg2-binary`)
- **MySQL** — via `mysql-connector-python` (optional)
- **Microsoft SQL Server** — via `pyodbc` (optional — requires ODBC drivers)
> **Note:** Only SQLite support is required to get started. The server loads database adapters lazily — missing optional drivers won't prevent the server from starting.
## Setup
### 1. Install dependencies
```bash
pip install -r requirements.txt
```
### 2. Configure connections
Edit `config.json` to add your database connections:
```json
{
"connections": [
{
"name": "My Postgres",
"type": "postgres",
"host": "localhost",
"port": 5432,
"database": "mydb",
"username": "user",
"password": " Read full README on GitHub →