PostgreSQL Products MCP Server
@michael7736
关于 PostgreSQL Products MCP Server
MCP server for interacting with a PostgreSQL products database.
基本信息
配置
使用下面的配置,将此服务器添加到你的 MCP 客户端。
{
"mcpServers": {
"postgres-products": {
"command": "node",
"args": [
"/path/to/your/postgres-mcp-server/build/index.js"
],
"env": {
"PGHOST": "",
"PGPORT": "",
"PGUSER": "",
"PGPASSWORD": "",
"PGDATABASE": ""
}
}
}
}工具
未检测到工具
工具是从 README 中自动提取的。维护者可以在 ## Tools 标题下列出工具,即可填充这部分内容。
概览
What is PostgreSQL Products MCP Server?
PostgreSQL Products MCP Server is a Model Context Protocol server that allows AI assistants to query a PostgreSQL database containing product information using read-only SQL SELECT statements. It is intended for developers who need to integrate product data into MCP-compatible clients.
How to use PostgreSQL Products MCP Server?
Configure the server in your MCP client settings (e.g., cline_mcp_settings.json) with environment variables for PostgreSQL connection details (PGHOST, PGPORT, PGUSER, PGPASSWORD, PGDATABASE). Build the TypeScript code with npm run build, then point the client to the built build/index.js file. The server exposes a single tool called run_sql_query that accepts a SQL SELECT query string.
Key features of PostgreSQL Products MCP Server
- Executes read-only SQL SELECT queries against PostgreSQL.
- Simple configuration via environment variables.
- Built with TypeScript and compiled to Node.js.
- Single focused tool for database interaction.
- Designed for product-related database schemas.
Use cases of PostgreSQL Products MCP Server
- Allow an AI assistant to fetch product details from a database.
- Query stock quantities or pricing information for inventory.
- Retrieve product listings filtered by category or other criteria.
- Enable natural language questions about products via an MCP client.
FAQ from PostgreSQL Products MCP Server
What database schema does the server require?
The server connects to any PostgreSQL database, but it is designed for a schema containing product information. No specific table structure is enforced beyond being reachable by SELECT queries.
What transport or authentication does the server use?
The server uses PostgreSQL connection credentials provided via environment variables (PGHOST, PGPORT, PGUSER, PGPASSWORD, PGDATABASE). It does not implement additional authentication or transport layers beyond standard MCP.
Can the server modify or insert data?
No. The run_sql_query tool only accepts SQL SELECT statements, making it read-only by design.
What are the runtime dependencies?
Node.js v18 or later, npm or yarn, and access to a PostgreSQL database with the appropriate credentials.
Is the server limited to a specific MCP client?
No. It works with any MCP-compatible client that supports the configuration format (e.g., Claude Desktop, Cline).
数据库 分类下的更多 MCP 服务器
mcp-server-duckdb
ktanaka101A Model Context Protocol (MCP) server implementation for DuckDB, providing database interaction capabilities
Dbhub
bytebaseZero-dependency, token-efficient database MCP server for Postgres, MySQL, SQL Server, MariaDB, SQLite.
ClickHouse MCP Server
ClickHouseConnect ClickHouse to your AI assistants.
Snowflake MCP Server
isaacwassermanmcp-server-qdrant: A Qdrant MCP server
qdrantAn official Qdrant Model Context Protocol (MCP) server implementation
评论