MCP.so
登录

PostgreSQL

@pyljain

关于 PostgreSQL

暂无概览

基本信息

分类

开发工具

运行时

node

传输方式

stdio

发布者

pyljain

配置

使用下面的配置,将此服务器添加到你的 MCP 客户端。

{
  "mcpServers": {
    "mcp_server_template": {
      "command": "docker",
      "args": [
        "build",
        "-t",
        "mcp/postgres",
        "-f",
        "src/postgres/Dockerfile",
        "."
      ]
    }
  }
}

工具

1

Execute read-only SQL queries against the connected database

概览

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 query tool.
  • 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.

评论

开发工具 分类下的更多 MCP 服务器