mcp-server-weaviate

by MCP-Mirror

286 downloads
Not rated
GitHub

About

An MCP server for Weaviate, a vector database.

Details

Author
MCP-Mirror
Downloads
286
Categories
Database

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name mcp-server-weaviate
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

Install uv (required), clone the repository, and configure the server in Claude Desktop's MCP servers configuration file. Set the command to PYTHON_PATH -m src.server with arguments for the Weaviate URL, Weaviate API key, search collection name, store collection name,

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "mcp-server-weaviate": {
            "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"
                }
            }
        }
    }
}

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

mcp-server-weaviate

MCP server for Weaviate

🏎️ Quickstart

Prerequisites

- Ensure you have uv installed (see
the docs for
details)
- Clone this repository

Install

Claude Desktop

On MacOS: ~/Library/Application\ Support/Claude/claude_desktop_config.json

On Windows: %APPDATA%/Claude/claude_desktop_config.json

Development/Unpublished Servers Configuration

{
  "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"
      }
    }
  }
}

Demo

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.