Skip to main content

Add your description here

Project description

mcp-server-postgresql: A PostgreSQL MCP Server

The Model Context Protocol (MCP) is an open protocol that enables seamless integration between LLM applications and external data sources and tools. Whether you're building an AI-powered IDE, enhancing a chat interface, or creating custom AI workflows, MCP provides a standardized way to connect LLMs with the context they need.

This repository is an example of how to create an MCP server for managing PostgreSQL databases.

PyPI version

Overview

A Model Context Protocol server for interacting with PostgreSQL. It provides tools for executing queries, creating tables, inserting rows of data, and retrieving results.

Components

Tools

The server implements the following tools:

  • execute_query: Execute an arbitrary SQL query

    • Takes a query string
    • Returns results for SELECT-like statements, or a success message for others
  • create_table: Create a new table

    • Takes a name and a schema (column definitions)
    • Creates the specified table
  • insert_data: Insert a row of data into a table

    • Takes a table name and a data dict of column values
    • Inserts the specified row
  • fetch_data: Fetch data by executing a SELECT query

    • Takes a query string
    • Returns matching rows as a result set

Configuration

The server connects to PostgreSQL using the following environment variables (all are required):

  • PG_HOST: PostgreSQL host
  • PG_PORT: PostgreSQL port
  • PG_USER: PostgreSQL user
  • PG_PASSWORD: PostgreSQL password
  • PG_DATABASE: PostgreSQL database name

If any of these variables are missing, the server will raise an error during startup. Make sure to set each of these before running the server.

Quickstart

Claude Desktop

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json
On Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "postgresql": {
    "command": "uvx",
    "args": [
      "mcp-server-postgresql"
    ]
  }
}

Development

Building and Publishing

To prepare the package for distribution:

  1. Sync dependencies and update lockfile:
uv sync
  1. Build package distributions:
uv build

This will create source and wheel distributions in the dist/ directory.

  1. Publish to PyPI:
uv publish

Note: You'll need to set PyPI credentials via environment variables or command flags:

  • Token: --token or UV_PUBLISH_TOKEN
  • Or username/password: --username/UV_PUBLISH_USERNAME and --password/UV_PUBLISH_PASSWORD

Debugging

Since MCP servers run over stdio, debugging can be challenging. For the best debugging experience, we strongly recommend using the MCP Inspector.

You can launch the MCP Inspector via npm with this command:

npx @modelcontextprotocol/inspector uv --directory $(PWD) run mcp-server-postgresql

Upon launching, the Inspector will display a URL that you can access in your browser to begin debugging.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

mcp_server_postgresql-0.1.9.tar.gz (16.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

mcp_server_postgresql-0.1.9-py3-none-any.whl (4.8 kB view details)

Uploaded Python 3

File details

Details for the file mcp_server_postgresql-0.1.9.tar.gz.

File metadata

File hashes

Hashes for mcp_server_postgresql-0.1.9.tar.gz
Algorithm Hash digest
SHA256 ad02281aed2c64ac2ba4389ff83eee66b722d9ec993d9397a1f1c1fb61f72c3d
MD5 57651fc97dc2f64a0f40162500e00644
BLAKE2b-256 63a4559553c520573c28108fc65a392a7393b935e542c6367cae3b37648a2a9b

See more details on using hashes here.

File details

Details for the file mcp_server_postgresql-0.1.9-py3-none-any.whl.

File metadata

File hashes

Hashes for mcp_server_postgresql-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 75e148cde0d7033319edb632d4fad01ec62332023f2b405f43956e53518d4300
MD5 151709c74d9d2c2ed47f68e979292a8e
BLAKE2b-256 bd40832bc329371021a37b0474352e7d252696eeafa46bad40043ac124654e6c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page