PostgreSQL MCP Server
@leixiaotian1
About PostgreSQL MCP Server
一款用golang实现的操作pg数据库的mcp server,支持创建表、查询表、插入数据,查看数据,分析sql语句等功能,欢迎共建!!!
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"pgsql-mcp-server": {
"command": "docker",
"args": [
"network",
"create",
"sql-mcp-network"
]
}
}
}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 PostgreSQL MCP Server?
PostgreSQL MCP Server is a Model Context Protocol server that provides tools for AI assistants to interact with a PostgreSQL database. It enables executing SQL queries, explaining statements, creating tables, and listing tables via the MCP protocol.
How to use PostgreSQL MCP Server?
Clone the repository, install dependencies with go mod download, and build with go build -o pgsql-mcp-server. Configure database connection via environment variables in a .env file (e.g., DB_HOST, DB_PORT, DB_NAME, DB_USER, DB_PASSWORD, DB_SSLMODE, SERVER_MODE). Run the server with ./pgsql-mcp-server or configure it in your MCP client’s JSON settings.
Key features of PostgreSQL MCP Server
- Interact with PostgreSQL databases through AI assistants.
- Separate read and write operations for security (
read_query,write_query). - Create tables and list existing tables (
create_table,list_tables). - Analyze query execution plans (
explain_query). - Supports multiple transport modes: stdio, SSE, and streamableHttp.
- Environment-based configuration via
.envfile.
Use cases of PostgreSQL MCP Server
- Let an AI assistant query and analyze PostgreSQL data.
- Allow AI to create database tables based on user requests.
- Enable AI to review query execution plans for optimization.
- Manage database schemas through natural language prompts.
FAQ from PostgreSQL MCP Server
What dependencies are required?
Go 1.23 or later and a running PostgreSQL database server are required.
How do I configure the database connection?
Set environment variables in a .env file: DB_HOST, DB_PORT, DB_NAME, DB_USER, DB_PASSWORD, DB_SSLMODE, and optionally SERVER_MODE. These can also be passed directly in the MCP client’s configuration JSON.
What transport modes does the server support?
Three modes are supported: stdio (default), sse (Server-Sent Events over HTTP), and streamableHttp. Select the mode by setting the SERVER_MODE environment variable.
How are read and write operations separated?
The server exposes distinct tools: read_query for SELECT queries, write_query for INSERT/UPDATE/DELETE, and create_table for CREATE TABLE statements. This allows clients to authorize each operation type separately.
Is there a Docker deployment guide?
Yes, the README includes a detailed Docker deployment guide with steps to create a shared network, start a PostgreSQL container, and build/run the application container using the provided Makefile.
More Databases MCP servers
Database Gateway
centralmindUniversal MCP-Server for your Databases optimized for LLMs and AI-Agents.
mcp_mysql_server
wenb1n-devModel Context Protocol (MCP) server that supports secure interaction with MySQL databases and has anomaly analysis capabilities.更加牛逼!更加好用!不仅止于mysql的增删改查功能; 还包含了数据库异常分析能力;且便于开发者们进行个性化的工具扩展
MCP MongoDB Server
kiliczshA Model Context Protocol Server for MongoDB
Dbhub
bytebaseZero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.

Redis
modelcontextprotocolModel Context Protocol Servers
Comments