db-view-mcp
@conte777
About db-view-mcp
MCP server that gives AI assistants direct access to PostgreSQL and ClickHouse databases. Supports stdio and HTTP transports.
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"database": {
"command": "npx",
"args": [
"-y",
"@conte777/db-view-mcp",
"--config",
"/path/to/config.json"
]
}
}
}Tools
No tools detected
We auto-extract tools from the README. The maintainer can list them under a ## Tools heading to populate this section.
Overview
What is db-view-mcp?
db-view-mcp is an MCP server that gives AI assistants direct access to PostgreSQL and ClickHouse databases. It supports stdio and HTTP transports, allowing both local IDE integration and remote network access.
How to use db-view-mcp?
Install with npm install @conte777/db-view-mcp, configure a config.json listing databases and optional transport settings, then run via npm start -- --config config.json. Add the server to your MCP client (e.g., Claude Desktop or Claude Code) using the npx command with the config path.
Key features of db-view-mcp
- Supports both PostgreSQL and ClickHouse connections simultaneously
- Offers read-only tools (SELECT, schema, EXPLAIN) and write tools (INSERT/UPDATE/DELETE, DDL, transactions)
- Provides two transport modes: stdio for local IDE use and HTTP for remote/multi-client access
- Includes SQL safety with read-only tools that block accidental writes
- Supports optional bearer token authentication for HTTP transport
- Allows lazy connections (connect on first use) to avoid unneeded startup overhead
Use cases of db-view-mcp
- Let AI coding assistants query a project's database directly from an IDE like Cursor or Claude Code
- Enable remote database exploration and management via a web application using HTTP transport
- Run schema introspection and performance analysis (EXPLAIN ANALYZE, slow query tracking) through AI chat
- Perform batch data inserts, updates, or DDL operations via an AI agent in a controlled session
FAQ from db-view-mcp
What databases does db-view-mcp support?
It supports PostgreSQL and ClickHouse. You can connect to any number of instances of either type simultaneously in one server.
How do I switch between stdio and HTTP transport?
Set "transport.type" to "http" in config.json, or use the CLI flag --transport http. The default is stdio.
Can I prevent accidental writes to the database?
Yes. Read-only tools (query, list_tables, etc.) validate SQL to block write keywords. Write operations require the explicit execute or transaction tool.
Does db-view-mcp support transactions?
Yes, for PostgreSQL. The transaction tool allows begin, commit, and rollback. ClickHouse does not support transactions — using the transaction tool on ClickHouse throws an error.
How does authentication work for HTTP transport?
Optional bearer token authentication can be enabled by setting transport.auth.type to "bearer" with a token value. Requests to /mcp must include an Authorization: Bearer <token> header. The /health endpoint is not protected.
More Databases MCP servers
Database Gateway
centralmindUniversal MCP-Server for your Databases optimized for LLMs and AI-Agents.
Meilisearch MCP Server
meilisearchA Model Context Protocol (MCP) server for interacting with Meilisearch through LLM interfaces.
mcp_mysql_server
xwb602625136Model Context Protocol (MCP) server that supports secure interaction with MySQL databases and has anomaly analysis capabilities.更加牛逼!更加好用!不仅止于mysql的增删改查功能; 还包含了数据库异常分析能力;且便于开发者们进行个性化的工具扩展

PostgreSQL
modelcontextprotocolModel Context Protocol Servers

Sqlite
modelcontextprotocolModel Context Protocol Servers
Comments