PostgreSQL
@pyljain
About PostgreSQL
No overview available yet
Basic information
Config
Add this server to your MCP-compatible client using the configuration below.
{
"mcpServers": {
"mcp_server_template": {
"command": "docker",
"args": [
"build",
"-t",
"mcp/postgres",
"-f",
"src/postgres/Dockerfile",
"."
]
}
}
}Tools
1Execute read-only SQL queries against the connected database
Overview
What is PostgreSQL?
A Model Context Protocol server that provides read-only access to PostgreSQL databases, enabling LLMs to inspect database schemas and execute read-only SQL queries.
How to use PostgreSQL?
Use the server with Claude Desktop by adding configuration to claude_desktop_config.json. Run via Docker (docker run -i --rm mcp/postgres postgresql://...) or NPX (npx -y @modelcontextprotocol/server-postgres postgresql://...). Replace the connection string with your database URL.
Key features of PostgreSQL
- Execute read-only SQL queries via the
querytool. - All queries run within a READ ONLY transaction.
- Automatically discover table schemas as JSON resources.
- Schema resources include column names and data types.
- Connect to any PostgreSQL database via connection string.
Use cases of PostgreSQL
- Let an LLM explore a database schema before generating queries.
- Allow an LLM to run safe, read-only analytical queries.
- Provide structured schema context to improve LLM query accuracy.
FAQ from PostgreSQL
What exactly does this MCP server do?
It provides read-only database access: it can inspect schemas and execute read-only SQL queries, but never writes data.
How do I connect to my PostgreSQL database?
Provide a PostgreSQL connection URL (e.g., postgresql://user:password@host:port/db-name) as a command argument when using Docker or NPX.
Is the server read-only?
Yes. All queries are executed within a READ ONLY transaction, preventing any modifications.
What are the runtime requirements?
The server can be run via Docker (using the mcp/postgres image) or Node.js via NPX (using the @modelcontextprotocol/server-postgres package). No other dependencies are listed.
How is authentication handled?
Authentication is managed through the PostgreSQL connection URL, which can include username and password directly in the URL string.
More Developer Tools MCP servers
DevDocs by CyberAGI 🚀
cyberagiincCompletely free, private, UI based Tech Documentation MCP server. Designed for coders and software developers in mind. Easily integrate into Cursor, Windsurf, Cline, Roo Code, Claude Desktop App
MCP Containers
metorialConnect any AI model to 1200+ integrations (MCP, CLI, API)
OpenSumi
opensumiA framework helps you quickly build AI Native IDE products. MCP Client, supports Model Context Protocol (MCP) tools via MCP server.
MCP Framework
QuantGeekDevThe Typescript MCP Framework
test
cloudwegoThe ultimate LLM/AI application development framework in Go.
Comments