Google PageRank for AI agents. 25,000+ tools indexed.

MCP Database Query Server by Vicus-Brits

#746 of 1753 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

Single-contributor projects carry bus-factor risk — welcoming contributors boosts confidence

Stars low impact

Low star count — promote the project, write docs, and engage the community to drive adoption

Platforms medium impact

Only 1 platform listed — publishing to more platforms improves your score

Badge

AgentRank score for MCP Database Query Server by Vicus-Brits
[![AgentRank](https://agentrank-ai.com/api/badge/skill/glama-Vicus-Brits--mcp-server)](https://agentrank-ai.com/skill/glama-Vicus-Brits--mcp-server/?utm_source=badge&utm_medium=readme&utm_campaign=agentrank_badge)
<a href="https://agentrank-ai.com/skill/glama-Vicus-Brits--mcp-server/?utm_source=badge&utm_medium=readme&utm_campaign=agentrank_badge"><img src="https://agentrank-ai.com/api/badge/skill/glama-Vicus-Brits--mcp-server" alt="AgentRank"></a>

Supported Platforms

MCP

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 →