Back to MCP Servers

Weaviate

Connect to Weaviate vector database for semantic search, knowledge base management, and RAG workflows with vector embeddings

weaviatevector-databaseembeddingsaisearchrag

Installation

npm install -g @weaviate/mcp-server

Configuration

{
  "mcpServers": {
    "weaviate": {
      "command": "npx",
      "args": ["-y", "@weaviate/mcp-server"],
      "env": {
        "WEAVIATE_URL": "http://localhost:8080",
        "WEAVIATE_API_KEY": "your-weaviate-api-key"
      }
    }
  }
}

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
View source on GitHub