Stealth Browser MCP
Stealth browser automation server for MCP-compatible AI agents, bypassing Cloudflare challenges and anti-bot systems via nodriver and Chrome DevTools Protocol.
Secure database inspection and read-only schema querying server for AI coding assistants and SQL agents.
The PostgreSQL MCP Server enables language models to securely interact with PostgreSQL databases. By exposing tools for schema introspection and SQL query execution, AI assistants can analyze relational database structures, write optimized SQL queries, and diagnose data anomalies safely.
query: Execute SQL statements against connected databases with tabular record returns.{
"mcpServers": {
"postgres": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-postgres", "postgresql://user:password@localhost:5432/dbname"]
}
}
}
We strongly recommend configuring a dedicated read-only database user role with restricted permissions to prevent unauthorized updates or deletions.
If granted appropriate write permissions, the agent can draft and apply DDL migration scripts, though human review is advised.
Yes, any standard PostgreSQL connection URI with SSL support is fully compatible.