Provides an HTTP interface for interacting with PostgreSQL databases through the Model Control Protocol (MCP).
Postgres offers a Model Control Protocol (MCP) server implementation for PostgreSQL databases, exposing a simple HTTP interface for interaction. Users can execute read-only queries and explore database resources using MCP commands. The server is built with Go and the Gin web framework, and it supports configuration through both command-line flags and environment variables.
主な機能
01MCP-compliant HTTP server
02Read-only SQL query execution
03Database resource listing
04Configuration via command-line flags or .env files
ユースケース
01Remote database querying via HTTP
02Database resource exploration via MCP
Postgres MCP: HTTP Interface for PostgreSQL Databases