~/agent-config
Browse
MCP

Postgres MCP

Gives your agent read-only access to a PostgreSQL database so it can inspect schemas and run queries while writing data-layer code. Point it at a connection string.

#mcp #postgres #database #sql

Snippet

{
  "mcpServers": {
    "postgres": {
      "command": "npx",
      "args": ["-y", "@modelcontextprotocol/server-postgres"],
      "env": {
        "POSTGRES_CONNECTION_STRING": "postgresql://user:pass@localhost:5432/db"
      }
    }
  }
}

Where it installs

Default config location for each supported agent.

Best for

BackendDatabaseFullstack

Related resources

Skill

Database Schema Design

Models relational schemas with sane normalization, indexes, and constraints. Plans safe, reversible migrations and flags N+1 query risks early.

#database #sql #schema +1

Cursor, Claude Code, Windsurf +3

MCP

Supabase MCP

Manage Supabase projects from your agent — run SQL, inspect tables, check logs, and apply migrations. Requires a Supabase personal access token.

#mcp #supabase #database +1

Cursor, Claude Code, Windsurf +1

Details