Milvus MCP Server
Databasestdiossev0.2.1
Official MCP server for the Milvus vector database. Lets AI agents create collections, insert vectors, and run similarity and scalar-filtered searches over large-scale embedding data, enabling retrieval and long-term memory for AI applications.
Connect
Add this configuration to .claude/mcp.json
Transport:
{
"mcpServers": {
"milvus": {
"command": "uvx",
"args": [
"mcp-server-milvus"
],
"env": {
"MILVUS_URI": "<YOUR_MILVUS_URI>",
"MILVUS_TOKEN": "<YOUR_MILVUS_TOKEN>"
}
}
}
}Tools (2)
milvus_search
Perform a vector similarity search within a Milvus collection.
{
"type": "object",
"required": [
"collection_name",
"query_text"
],
"properties": {
"limit": {
"type": "integer",
"description": "Maximum number of results to return"
},
"query_text": {
"type": "string",
"description": "Text to embed and search for"
},
"collection_name": {
"type": "string",
"description": "Name of the collection to search"
}
}
}milvus_insert
Insert entities with vectors and metadata into a Milvus collection.
{
"type": "object",
"required": [
"collection_name",
"data"
],
"properties": {
"data": {
"type": "array",
"items": {
"type": "object"
},
"description": "Entities to insert"
},
"collection_name": {
"type": "string",
"description": "Target collection name"
}
}
}Resources
This server does not expose any resources.
Prompts
This server does not expose any prompts.
Server Information
- Author
- Zilliz (@zilliztech)
- License
- Apache-2.0
- Version
- 0.2.1
- Stars
- 356
- Last Updated
- July 9, 2026