Weaviate MCP Server
Databasestdiov0.3.0
MCP server for the Weaviate open-source vector database. Enables AI agents to store objects, run semantic and hybrid searches, and manage collections, making it a memory and retrieval backend for RAG applications directly from AI-powered tools.
Подключение
Добавьте эту конфигурацию в .claude/mcp.json
{
"mcpServers": {
"weaviate": {
"command": "uvx",
"args": [
"mcp-server-weaviate"
],
"env": {
"WEAVIATE_URL": "<YOUR_WEAVIATE_URL>",
"WEAVIATE_API_KEY": "<YOUR_WEAVIATE_API_KEY>"
}
}
}
}Инструменты (2)
weaviate_insert
Insert an object into a Weaviate collection, embedding its text automatically.
{
"type": "object",
"required": [
"collection",
"properties"
],
"properties": {
"collection": {
"type": "string",
"description": "Name of the target collection"
},
"properties": {
"type": "object",
"description": "Object properties to store"
}
}
}weaviate_search
Run a semantic or hybrid search over a Weaviate collection.
{
"type": "object",
"required": [
"collection",
"query"
],
"properties": {
"limit": {
"type": "integer",
"description": "Maximum number of results"
},
"query": {
"type": "string",
"description": "Natural language query"
},
"collection": {
"type": "string",
"description": "Collection to search"
}
}
}Ресурсы
Этот сервер не предоставляет ресурсы.
Промпты
Этот сервер не предоставляет промпты.
Сведения о сервере
- Автор
- Weaviate (@weaviate)
- Лицензия
- BSD-3-Clause
- Версия
- 0.3.0
- Звёзды
- 412
- Последнее обновление
- 9 июля 2026 г.