Back to MCP directory
publicPublicdnsLocal runtime

mcp-server-weaviate

Weaviate的MCP服务器,支持通过Smithery快速安装并与Claude Desktop集成,提供向量搜索和存储功能。

article

README

🚀 mcp-server-weaviate

mcp-server-weaviate 是一个用于Weaviate的MCP服务器,为相关应用提供了便捷的使用体验,能有效提升数据处理和服务的效率。

🚀 快速开始

先决条件

  • 确保安装了uv,有关详细信息,请参阅文档
  • 克隆此仓库。

📦 安装指南

通过Smithery安装

要自动通过Smithery安装Weaviate MCP服务器,可使用以下命令:

npx -y @smithery/cli install @weaviate/mcp-server-weaviate --client claude

Claude Desktop配置

  • MacOS系统:配置文件路径为 ~/Library/Application\ Support/Claude/claude_desktop_config.json
  • Windows系统:配置文件路径为 %APPDATA%/Claude/claude_desktop_config.json%

开发/未发布的服务器配置示例如下:

{
  "mcpServers": {
    "mcp-server-weaviate": {
      "command": "PYTHON_PATH",
      "args": [
        "-m",
        "src.server",
        "--weaviate-url",
        "YOUR_WEAVIATE_URL",
        "--weaviate-api-key",
        "YOUR_WEAVIATE_API_KEY",
        "--search-collection-name",
        "YOUR_SEARCH_COLLECTION",
        "--store-collection-name",
        "YOUR_STORE_COLLECTION",
        "--openai-api-key",
        "YOUR_OPENAI_API_KEY"
      ],
      "env": {
        "PYTHONPATH": "MCP_SERVER_WEAVIATE_DIRECTORY_PATH"
      }
    }
  }
}

效果演示

演示

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client