Back to MCP Servers

Milvus

Manage Milvus vector database collections, perform similarity searches, and handle vector embeddings for AI applications

milvusvector-databaseembeddingsaisearch

Installation

pip install mcp-server-milvus

Configuration

{
  "mcpServers": {
    "milvus": {
      "command": "uvx",
      "args": ["mcp-server-milvus"],
      "env": {
        "MILVUS_URI": "http://localhost:19530",
        "MILVUS_TOKEN": "your-milvus-token"
      }
    }
  }
}

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