Server data from the Official MCP Registry
Similarity search, hybrid search, and index management for pgvector-backed PostgreSQL tables
Similarity search, hybrid search, and index management for pgvector-backed PostgreSQL tables
Well-designed MCP server with strong SQL injection defenses and comprehensive test coverage. Every table/column identifier is validated against pg_catalog before interpolation, and all values use bound parameters. Read-only mode and per-query timeouts provide appropriate safety controls. Minor findings relate to code quality and documentation clarity rather than security vulnerabilities. Supply chain analysis found 3 known vulnerabilities in dependencies (0 critical, 3 high severity). Package verification found 1 issue.
7 files analyzed · 9 issues found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Set these up before or after installing:
Environment variable: DATABASE_URL
Environment variable: MCP_PGVECTOR_READ_ONLY
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-mittalpk-pgvector": {
"env": {
"DATABASE_URL": "your-database-url-here",
"MCP_PGVECTOR_READ_ONLY": "your-mcp-pgvector-read-only-here"
},
"args": [
"mcp-server-pgvector"
],
"command": "uvx"
}
}
}From the project's GitHub README.
An MCP server that gives LLM agents first-class access to pgvector-backed embedding tables in PostgreSQL: similarity search, hybrid (vector + full-text) search, upserts, and HNSW/IVFFlat index management.
Generic Postgres MCP servers expose raw SQL or schema introspection; this one speaks pgvector specifically — nearest-neighbor search, distance metrics, and ANN index tuning are first-class tools, not something the model has to hand-write SQL for.
| Tool | Description |
|---|---|
list_vector_tables | Discover every vector column in the database, with its dimensionality |
describe_vector_table | Columns, indexes, and approximate row count for a table |
similarity_search | k-NN search over a vector column (cosine / L2 / inner product), with structured metadata filters |
hybrid_search | Weighted blend of vector similarity and Postgres full-text search (ts_rank_cd) |
upsert_embedding | Insert or update a row's embedding + metadata |
create_vector_index | Create an HNSW or IVFFlat index with tunable parameters |
explain_similarity_query | EXPLAIN ANALYZE a similarity query to confirm the ANN index is used |
information_schema / pg_catalog before being
interpolated into SQL — an LLM can only ever reference identifiers that already exist. Values are
always bound parameters.{column, op, value} allowlist, not a raw SQL fragment.MCP_PGVECTOR_READ_ONLY=true to disable upsert_embedding and create_vector_index,
leaving only read/search tools available — useful when pointing the server at a production
database.MCP_PGVECTOR_COMMAND_TIMEOUT_SECONDS, default
30s) so one expensive query can't occupy a pool connection — and stall every other caller —
indefinitely. Set it to 0 to disable.uvx mcp-server-pgvector
Or with pip:
pip install mcp-server-pgvector
python -m mcp_server_pgvector
The server reads its connection string from DATABASE_URL (or PGVECTOR_DATABASE_URL):
{
"mcpServers": {
"pgvector": {
"command": "uvx",
"args": ["mcp-server-pgvector"],
"env": {
"DATABASE_URL": "postgresql://user:password@localhost:5432/mydb",
"MCP_PGVECTOR_READ_ONLY": "false",
"MCP_PGVECTOR_COMMAND_TIMEOUT_SECONDS": "30"
}
}
}
}
Covered:
pg_catalog before use) and a closed
filter-operator allowlist — no path from tool arguments to raw SQL.twine check on the result.ConnectionRefusedError/asyncpg exceptions — verified
these don't leak the DSN's credentials into error text.Known limitations, honestly:
DATABASE_URL can
do. If you need different agents to have different permissions, give them different
connection strings backed by different Postgres roles, not different server instances of this
same DSN.hybrid_search's full-text side is hardcoded to Postgres's 'english' text search
configuration; there's no parameter to change it yet.uv sync --dev
# Bring up an isolated pgvector instance for local testing
docker compose -f docker-compose.dev.yml up -d
export DATABASE_URL=postgresql://postgres:postgres@localhost:5434/postgres
uv run pytest
uv run ruff check .
uv run pyright
See CONTRIBUTING.md. See CHANGELOG.md for release history.
MIT — see LICENSE.
Be the first to review this server!
by Modelcontextprotocol · AI & ML
Dynamic and reflective problem-solving through structured thought sequences
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.