Back to MCP Servers

Server Weaviate

An MCP Server to connect to your Weaviate collections as a knowledge base as well as using Weaviate as a chat memory store.

databases
By weaviate
16143Updated 11 months agoGo

Installation

npx -y mcp-server-weaviate

Configuration

{
  "mcpServers": {
    "mcp-server-weaviate": {
      "command": "npx",
      "args": ["-y", "mcp-server-weaviate"]
    }
  }
}

How to use

  1. Run the installation command above (if needed)
  2. Open your Claude Code settings file (~/.claude/settings.json)
  3. Add the configuration to the mcpServers section
  4. Restart Claude Code to apply changes

Weaviate MCP Server

Instructions

Build the server:

make build

Run the test client

make run-client

Tools

Insert One

Insert an object into weaviate.

Request body:

{}

Response body

{}

Query

Retrieve objects from weaviate with hybrid search.

Request body:

{}

Response body

{}
View source on GitHub