Back to MCP directory
publicPublicdnsLocal runtime

mcp-localhost-server-weaviate

Weaviate的MCP服务器,用于Claude桌面客户端的知识存储与检索

article

README

🚀 mcp-server-weaviate

mcp-server-weaviate 是 Weaviate 的 MCP 服务器,可与 Claude Desktop 集成,为相关应用提供支持。

🚀 快速开始

先决条件

  • 确保已安装 uv,详细安装信息请参阅 官方文档
  • 克隆此仓库。

📦 安装指南

通过 Smithery 安装

要通过 Smithery 自动安装 Weaviate MCP 服务器(适用于 Claude Desktop),可使用以下命令:

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": "PATH_TO_MCP_SERVER_WEAVIATE_DIRECTORY"
      }
    }
  }
}

效果演示

演示

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