MCP Postgres Query Server
@RathodDarshil
About MCP Postgres Query Server
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"postgres-query": {
"command": "node",
"args": [
"/path/to/your/mcp-postgres-query-server/dist/index.js",
"postgresql://username:password@hostname:port/database"
]
}
}
}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 MCP Postgres Query Server?
MCP Postgres Query Server is a Model Context Protocol server that provides a secure, read-only interface to a PostgreSQL database. It is designed for use with Claude Desktop and other MCP clients, allowing users to execute SELECT queries safely.
How to use MCP Postgres Query Server?
Clone the repository, install dependencies (npm install), and build (npm run build). Configure Claude Desktop by adding the server to claude_desktop_config.json with the command node and an argument pointing to the built dist/index.js followed by your PostgreSQL connection string. Then restart Claude Desktop.
Key features of MCP Postgres Query Server
- Read-only database access (SELECT queries only)
- Query validation to block non-SELECT SQL
- Automatic 10-second query timeout
- Full MCP protocol implementation
- Structured JSON query results
Use cases of MCP Postgres Query Server
- Query a PostgreSQL database securely through Claude Desktop
- Generate read-only database reports using natural language
- Explore database schemas and data without write permissions
- Integrate PostgreSQL data into MCP-based AI workflows
FAQ from MCP Postgres Query Server
What queries are allowed?
Only SQL SELECT queries are permitted; all other SQL statements are rejected by the validation logic.
What runtime dependencies are required?
Node.js v14 or later, npm, and a PostgreSQL database with connection credentials.
How do I connect the server to Claude Desktop?
Edit the claude_desktop_config.json file (accessible from Settings > Developer > Edit Config) and add a postgres-query entry with the correct path to the built server and your PostgreSQL connection string.
Does the server support write operations?
No, the server is strictly read-only. Query validation ensures only SELECT queries can execute.
How are database credentials handled?
Credentials are passed directly as a command-line argument (the connection string) and are not stored in configuration files.
More Databases MCP servers

Redis
modelcontextprotocolModel Context Protocol Servers
mcp_mysql_server
wenb1n-devModel Context Protocol (MCP) server that supports secure interaction with MySQL databases and has anomaly analysis capabilities.更加牛逼!更加好用!不仅止于mysql的增删改查功能; 还包含了数据库异常分析能力;且便于开发者们进行个性化的工具扩展
Redis MCP Server
redisThe official Redis MCP Server is a natural language interface designed for agentic applications to manage and search data in Redis efficiently
MCP MongoDB Server
kiliczshA Model Context Protocol Server for MongoDB
MySQL MCP Server
designcomputerA Model Context Protocol (MCP) server that enables secure interaction with MySQL databases
Comments