Weaviate MCP
Inserts objects into Weaviate and runs hybrid search queries against vector collections.
Delv Safety Grade: B
Score 72/100 · assessed 2026-04-28
Weaviate's official MCP server connects Claude to their vector database for hybrid search and object insertion. The vendor is legitimate and well-established in the vector database space, with active maintenance and clear documentation. However, the supply chain story is weaker: you must clone and build from source using Make rather than installing from a package registry, and there's no versioned distribution. The permissions are moderately scoped—it writes to a remote database and reads API credentials from environment variables, which is standard for database tooling but does grant persistent write access. No security incidents are known. The hybrid search capability (vector plus keyword) is genuinely useful for RAG workflows, and being official means it tracks Weaviate's API changes. Transparency is good with open source code and adequate docs, though the install process adds friction and supply-chain verification burden.
Lethal Trifecta (prompt-injection exposure)
ONE OF THREESame.
Green flags
- Official vendor implementation from Weaviate team
- Open source with visible commit history and issue tracker
- Hybrid search combines vector similarity with keyword matching
- Scoped to single database vendor, not arbitrary network access
- No known security incidents or credential leaks
Red flags
- No package registry distribution, must clone and build from source
- Requires API key in environment, credential exposure risk if misconfigured
- Write access to remote database with no apparent scoping or sandboxing
- Make-based build process adds supply-chain verification burden
Permissions requested
Install
make build
WEAVIATE_URLWEAVIATE_API_KEYReview
Install if you're already running Weaviate and need Claude to search or populate collections during conversations. The hybrid search is genuinely useful for RAG and semantic retrieval. Skip if you don't have vector search needs or aren't willing to manage Weaviate schemas separately.
Good at
- Hybrid search combines vector similarity with keyword matching, covering both semantic and exact-match retrieval in one query.
- Official vendor support means it tracks Weaviate API changes and gets maintained alongside the platform.
- Insert tool lets you build chat memory or knowledge graphs dynamically during conversations.
- Works with both Weaviate Cloud and self-hosted instances, so you control where your data lives.
Watch out
- Requires an existing Weaviate instance with pre-configured schemas, no schema creation or migration tools included.
- Error messages can be opaque if your collection or property names don't match the Weaviate schema.
- No batch insert beyond single-object operations, so large ingestion tasks need external scripting.
- Setup assumes familiarity with Weaviate's data model, not beginner-friendly if you're new to vector databases.
Use cases
- vector search
- RAG pipelines
- chat memory
- semantic indexing
Getting started
Works with
Similar MCPs
- NeonNeon's official MCP for serverless Postgres. Manage projects, branches, and run SQL against any of your databases.
- SupabaseSupabase's official MCP — query Postgres, manage auth, inspect storage buckets, all from your agent.
- PostgresQuery Postgres databases with natural language. Read-only access by default - the agent sees your schema and runs SELECT queries safely.
- ClickHouseClickHouse MCP for fast analytical queries. Built by ClickHouse Inc, supports cluster topology discovery.