Show HN: Pgmcp, an MCP server to query any Postgres database in natural language
1–7 of 7 posts
Re: Show HN: Pgmcp, an MCP server to query any Postgres database in natural language
#2Re: Show HN: Pgmcp, an MCP server to query any Postgres database in natural language
#3Re: Show HN: Pgmcp, an MCP server to query any Postgres database in natural language
#4recently posted https://news.ycombinator.com/item?id=43520953
Re: Show HN: Pgmcp, an MCP server to query any Postgres database in natural language
#5Codex: ``` [mcp_servers.postgresMCP] command = "npx" args = ["-y", "@modelcontextprotocol/server-postgres", "postgresql://user:password@localhost:5432/db"] ```
Cursor: ``` "postgresMCP": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-postgres", "postgresql://user:password@localhost:5432/db" ] }, ```
With my setup i can easily switch between LLM's
Re: Show HN: Pgmcp, an MCP server to query any Postgres database in natural language
#6Nice, but can somebody tell me if this performs better than my simple Postgres MCP using npx? My current setup uses the LLM to search through my local Postgres in multiple steps. I guess this Pgmcp is doing multiple steps in the background and returns the final result to the LLM calling the MCP tool? Codex: ``` [mcp_servers.postgresMCP] command = "npx" args = ["-y", "@modelcontextprotocol/server-postgres", "postgresq…
eg the agent could actively monitor memory/cpu/time usage of a query and cancel it if it's taking too long?