capital.hove/read-only-local-postgres-mcp-server
平台与服务by hovecapital
面向Claude Desktop的MCP服务器,用于对本地PostgreSQL数据库执行只读查询。
什么是 capital.hove/read-only-local-postgres-mcp-server?
面向Claude Desktop的MCP服务器,用于对本地PostgreSQL数据库执行只读查询。
README
PostgreSQL MCP Server
A Model Context Protocol (MCP) server that enables Claude Desktop to interact with PostgreSQL databases through natural language queries.
Features
- Execute read-only SQL queries through Claude Desktop or Claude Code
- Dynamic database connections - connect to any PostgreSQL database at runtime
- Built-in security with query validation (only SELECT statements allowed)
- Easy integration with Claude Desktop and Claude Code
- JSON formatted query results
- Environment-based default configuration with runtime override support
Quick Start
For Claude Code Users (Recommended - Easiest Method)
claude mcp add postgres -s user -- npx -y @hovecapital/read-only-postgres-mcp-server
Then set your database environment variables:
export DB_HOST=localhost
export DB_PORT=5432
export DB_DATABASE=your_database_name
export DB_USERNAME=your_username
export DB_PASSWORD=your_password
Done! Restart Claude Code and ask: "What tables are in my database?"
For Claude Desktop Users (Manual Configuration)
1. Open your config file:
# macOS
open ~/Library/Application\ Support/Claude/claude_desktop_config.json
# Windows
notepad %APPDATA%\Claude\claude_desktop_config.json
2. Add this configuration:
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@hovecapital/read-only-postgres-mcp-server"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
3. Save, restart Claude Desktop, and test!
Prerequisites
- Node.js (v16 or higher) - If using mise, update the command path accordingly
- PostgreSQL database server
- Claude Desktop application
Installation
Option 1: Install from MCP Registry (Recommended)
This server is published in the Model Context Protocol Registry as capital.hove/read-only-local-postgres-mcp-server.
Method A: Claude Code CLI (Easiest!)
claude mcp add postgres -s user -- npx -y @hovecapital/read-only-postgres-mcp-server
Then configure your database credentials using environment variables. Restart Claude Code and you're done!
Benefits:
- One command installation
- No manual JSON editing
- Automatic configuration
Method B: Manual JSON Configuration
For Claude Desktop:
Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@hovecapital/read-only-postgres-mcp-server"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
For Claude Code:
Edit ~/.config/claude-code/settings.json (macOS/Linux) or %APPDATA%\claude-code\settings.json (Windows):
{
"mcp": {
"servers": {
"postgres": {
"command": "npx",
"args": ["-y", "@hovecapital/read-only-postgres-mcp-server"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
}
Option 2: Install from npm
npm install -g @hovecapital/read-only-postgres-mcp-server
Option 3: Installation with Claude Code
If you're using Claude Code, you can easily install this MCP server:
# Clone the repository
git clone https://github.com/hovecapital/read-only-local-postgres-mcp-server.git
cd read-only-local-postgres-mcp-server
# Install dependencies and build
npm install
npm run build
Then configure Claude Code by adding to your MCP settings.
Option 4: Manual Installation
1. Clone or Download
Save the repository to a directory on your system:
mkdir ~/mcp-servers/postgres
cd ~/mcp-servers/postgres
git clone https://github.com/hovecapital/read-only-local-postgres-mcp-server.git .
2. Install Dependencies
npm install
npm run build
Configuration
Note: If you installed via Option 1 (MCP Registry with npx), you've already configured everything! This section is for users who chose Options 2, 3, or 4 (npm or manual installation).
Claude Code Configuration
If you're using Claude Code with a manual installation, add the PostgreSQL server to your MCP settings:
-
Open your Claude Code settings (typically in
~/.config/claude-code/settings.jsonon macOS/Linux or%APPDATA%\claude-code\settings.jsonon Windows) -
Add the PostgreSQL MCP server configuration:
{
"mcp": {
"servers": {
"postgres": {
"command": "node",
"args": ["/absolute/path/to/read-only-local-postgres-mcp-server/dist/index.js"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
}
- Restart Claude Code for the changes to take effect.
Claude Desktop Configuration
If you're using Claude Desktop with a manual installation, open your Claude Desktop configuration file:
macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
Windows:
%APPDATA%\Claude\claude_desktop_config.json
Add the PostgreSQL server configuration:
{
"mcpServers": {
"postgres": {
"command": "node",
"args": ["/absolute/path/to/read-only-local-postgres-mcp-server/dist/index.js"],
"env": {
"DB_HOST": "localhost",
"DB_PORT": "5432",
"DB_DATABASE": "your_database_name",
"DB_USERNAME": "your_username",
"DB_PASSWORD": "your_password"
}
}
}
}
Using mise for Node.js
If you're using mise for Node.js version management, make sure to use the full path to the Node.js executable in your configuration.
Environment Variables
| Variable | Description | Default |
|---|---|---|
DB_HOST | PostgreSQL server hostname | localhost |
DB_PORT | PostgreSQL server port | 5432 |
DB_DATABASE | Database name | postgres |
DB_USERNAME | PostgreSQL username | postgres |
DB_PASSWORD | PostgreSQL password | (empty) |
DB_SSL | Enable SSL connection | false |
Tools
This MCP server exposes three tools that Claude can use to interact with PostgreSQL databases.
connect
Connect to a PostgreSQL database using a connection string. The connection persists for subsequent queries until changed or disconnected.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
connectionString | string | Yes | PostgreSQL connection string |
Connection String Format:
postgres://username:password@host:port/database?sslmode=require
postgresql://username:password@host:port/database
SSL Modes Supported:
sslmode=require- Require SSL (recommended for remote connections)sslmode=verify-full- Require SSL with certificate verification- No sslmode parameter - No SSL (for local connections)
Example Usage (natural language):
"Connect to postgres://myuser:mypass@db.example.com:5432/production"
"Connect to this database: postgres://admin:secret@localhost/analytics"
Response:
{
"status": "connected",
"host": "db.example.com",
"port": 5432,
"database": "production",
"user": "myuser",
"ssl": true
}
disconnect
Disconnect from the current runtime database and revert to the default environment-configured connection.
Parameters: None
Example Usage (natural language):
"Disconnect from the current database"
"Go back to the default database"
Response:
{
"status": "disconnected",
"message": "Reverted to default environment connection",
"host": "localhost",
"database": "postgres"
}
query
Run a read-only SQL query against the currently connected database. Optionally override the connection for a single query.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
sql | string | Yes | SQL query to execute (SELECT only) |
connectionString | string | No | Override connection for this query only |
Example Usage (natural language):
"Show me all tables in the database"
"SELECT * FROM users LIMIT 10"
"Run this query on postgres://other:pass@host/db: SELECT count(*) FROM orders"
Response:
[
{ "id": 1, "name": "Alice", "email": "alice@example.com" },
{ "id": 2, "name": "Bob", "email": "bob@example.com" }
]
Tool Reference for LLMs
When using this MCP server, Claude can:
-
Query the default database (configured via environment variables):
codeUser: "What tables are in my database?" Claude: [Uses query tool with SQL: "SELECT table_name FROM information_schema.tables WHERE table_schema = 'public'"] -
Connect to a different database dynamically:
codeUser: "Connect to postgres://user:pass@newhost/newdb and show me the users table" Claude: [Uses connect tool first, then query tool] -
One-off query to a different database (without switching active connection):
codeUser: "How many records are in the orders table on postgres://user:pass@analytics/warehouse?" Claude: [Uses query tool with connectionString parameter] -
Revert to default connection:
codeUser: "Go back to my local database" Claude: [Uses disconnect tool]
Usage
- Restart Claude Desktop/Code after updating the configuration
- Start chatting with Claude about your database
Example Queries
Basic queries (uses default/active connection):
"Show me all tables in my database"
"What's the structure of the users table?"
"Get the first 10 records from the products table"
"How many orders were placed last month?"
"Show me users with email addresses ending in @gmail.com"
Dynamic connection examples:
"Connect to postgres://analyst:password@analytics.example.com:5432/warehouse"
"Now show me all the tables"
"What's the total revenue in the sales table?"
"Disconnect and go back to my local database"
One-off queries to different databases:
"Run SELECT count(*) FROM users on postgres://admin:secret@prod.example.com/app"
"Check the orders table on my staging database: postgres://dev:dev@staging/app"
Claude will automatically convert your natural language requests into appropriate SQL queries and execute them against your database.
Security Features
Read-Only Operations
The server enforces read-only access on all connections (both environment-configured and runtime dynamic connections). The following operations are blocked:
INSERT- Adding new recordsUPDATE- Modifying existing recordsDELETE- Removing recordsDROP- Removing tables/databasesALTER- Modifying table structureCREATE- Creating new tables/databasesTRUNCATE- Removing all records from a tableGRANT- Modifying permissionsREVOKE- Removing permissions
Dynamic Connection Security
When using the connect tool or connectionString parameter:
- Read-only enforcement still applies - All queries are validated regardless of connection source
- Credentials are not logged - Connection strings with passwords are never written to logs
- Sanitized responses - The
connecttool response excludes passwords - Session-based - Runtime connections only persist for the current MCP session
Recommended Database Setup
For enhanced security, create a dedicated read-only user for the MCP server:
-- Create a read-only user
CREATE USER claude_readonly WITH PASSWORD 'secure_password';
-- Grant only SELECT permissions on your specific schema
GRANT USAGE ON SCHEMA public TO claude_readonly;
GRANT SELECT ON ALL TABLES IN SCHEMA public TO claude_readonly;
-- Grant permissions for future tables (optional)
ALTER DEFAULT PRIVILEGES IN SCHEMA public GRANT SELECT ON TABLES TO claude_readonly;
Troubleshooting
Connection Issues
- Verify PostgreSQL is running: Check if your PostgreSQL server is active
- Check credentials: Ensure username/password are correct
- Network connectivity: Confirm Claude Desktop can reach your PostgreSQL server
Configuration Issues
- Restart required: Always restart Claude Desktop after configuration changes
- Path accuracy: Ensure the absolute path to
dist/index.jsis correct - JSON syntax: Validate your
claude_desktop_config.jsonformat
Debug Mode
To see server logs, you can run the server manually:
node dist/index.js
File Structure
~/mcp-servers/postgres/
├── src/
│ └── index.ts
├── dist/
│ ├── index.js
│ └── index.d.ts
├── package.json
├── tsconfig.json
└── node_modules/
Dependencies
- @modelcontextprotocol/sdk: MCP protocol implementation
- pg: PostgreSQL client for Node.js
Contributing
Feel free to submit issues and enhancement requests!
License
This project is open source and available under the MIT License.
Support
If you encounter issues:
- Check the troubleshooting section above
- Verify your PostgreSQL connection independently
- Ensure Claude Desktop is updated to the latest version
- Review the Claude Desktop MCP documentation
Note: This server is designed for development and analysis purposes. For production use, consider additional security measures and monitoring.
常见问题
capital.hove/read-only-local-postgres-mcp-server 是什么?
面向Claude Desktop的MCP服务器,用于对本地PostgreSQL数据库执行只读查询。
相关 Skills
MCP构建
by anthropics
聚焦高质量 MCP Server 开发,覆盖协议研究、工具设计、错误处理与传输选型,适合用 FastMCP 或 MCP SDK 对接外部 API、封装服务能力。
✎ 想让 LLM 稳定调用外部 API,就用 MCP构建:从 Python 到 Node 都有成熟指引,帮你更快做出高质量 MCP 服务器。
Slack动图
by anthropics
面向Slack的动图制作Skill,内置emoji/消息GIF的尺寸、帧率和色彩约束、校验与优化流程,适合把创意或上传图片快速做成可直接发送的Slack动画。
✎ 帮你快速做出适配 Slack 的动图,内置约束规则和校验工具,少踩上传与播放坑,做表情包和演示都更省心。
MCP服务构建器
by alirezarezvani
从 OpenAPI 一键生成 Python/TypeScript MCP server 脚手架,并校验 tool schema、命名规范与版本兼容性,适合把现有 REST API 快速发布成可生产演进的 MCP 服务。
✎ 帮你快速搭建 MCP 服务与后端 API,脚手架完善、扩展顺手,尤其适合想高效验证服务能力的开发者。
相关 MCP Server
Slack 消息
编辑精选by Anthropic
Slack 是让 AI 助手直接读写你的 Slack 频道和消息的 MCP 服务器。
✎ 这个服务器解决了团队协作中需要 AI 实时获取 Slack 信息的痛点,特别适合开发团队让 Claude 帮忙汇总频道讨论或发送通知。不过,它目前只是参考实现,文档有限,不建议在生产环境直接使用——更适合开发者学习 MCP 如何集成第三方服务。
by netdata
io.github.netdata/mcp-server 是让 AI 助手实时监控服务器指标和日志的 MCP 服务器。
✎ 这个工具解决了运维人员需要手动检查系统状态的痛点,最适合 DevOps 团队让 Claude 自动分析性能数据。不过,它依赖 NetData 的现有部署,如果你没用过这个监控平台,得先花时间配置。
by d4vinci
Scrapling MCP Server 是专为现代网页设计的智能爬虫工具,支持绕过 Cloudflare 等反爬机制。
✎ 这个工具解决了爬取动态网页和反爬网站时的头疼问题,特别适合需要批量采集电商价格或新闻数据的开发者。不过,它依赖外部浏览器引擎,资源消耗较大,不适合轻量级任务。