MCP Servers

A collection of Model Context Protocol servers, templates, tools and more.

MCP server by snyder2709

Created 3/26/2026
Updated about 7 hours ago
Repository documentation and setup instructions

postgres-rw MCP Server

EN | RU

A Model Context Protocol (MCP) server for PostgreSQL that supports both read and write operations. Unlike the official @modelcontextprotocol/server-postgres, this server allows executing INSERT, UPDATE, DELETE and other write statements.

Tools

| Tool | Description | |------|-------------| | query | Run a read-only SQL query (SELECT) | | execute | Execute a write SQL statement (INSERT, UPDATE, DELETE, DDL) |

Installation

claude mcp add --transport stdio -- postgres npx -y mcp-postgres-rw postgresql://user:password@host:5432/dbname

Restart Claude Code — query and execute tools will be available.


RU

MCP-сервер для PostgreSQL с поддержкой операций чтения и записи. В отличие от официального @modelcontextprotocol/server-postgres, этот сервер позволяет выполнять INSERT, UPDATE, DELETE и другие write-запросы.

Инструменты

| Инструмент | Описание | |------------|----------| | query | Выполнить SQL-запрос на чтение (SELECT) | | execute | Выполнить SQL-запрос на запись (INSERT, UPDATE, DELETE, DDL) |

Установка

claude mcp add --transport stdio -- postgres npx -y mcp-postgres-rw postgresql://user:password@host:5432/dbname

Перезапустить Claude Code — будут доступны инструменты query и execute.

Requirements

  • Node.js 18+
  • PostgreSQL
Quick Setup
Installation guide for this server

Install Package (if required)

npx @modelcontextprotocol/server-mcp-postgres-rw

Cursor configuration (mcp.json)

{ "mcpServers": { "snyder2709-mcp-postgres-rw": { "command": "npx", "args": [ "snyder2709-mcp-postgres-rw" ] } } }