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)
代码仓库
https://github.com/weaviate/mcp-server-weaviate
许可证
BSD-3-Clause
版本
0.3.0
星标
412
最后更新
2026年7月9日