M
Milvus
Search Milvus vector collections.
·No reviews yet
Share:
About
Auto-generated
Milvus is a Model Context Protocol server in the Data & Databases category. It lets AI assistants that speak MCP call its tools and read its resources over STDIO.
Example tools
Illustrative tool names — the actual tool set is defined by the server at runtime.
query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table
Screenshots
No screenshots yet.
Frequently Asked Questions
Common questions about Milvus.
- What is the primary function of this server?
- The Milvus server enables searching across Milvus vector collections. It acts as an interface to query data stored in Milvus, facilitating vector similarity searches and related operations.
- How can I set up the Milvus server with an MCP client like Cursor?
- To use the Milvus server with a client like Cursor, you typically add it via its slug 'milvus' through the client's MCP configuration interface. Ensure your client supports the 'stdio' transport for communication.
- Does this Milvus server require API keys or other credentials?
- No, this Milvus server implementation does not require API keys, OAuth, or any other authentication credentials. It operates with an authentication type of 'none' as described in its configuration.
- What are the licensing terms for using this Milvus server?
- The licensing terms for this Milvus server are determined by the underlying Milvus project, which is typically open-source. For specific details, refer to the official Milvus repository on GitHub.
- What is a common prerequisite for using the Milvus server effectively?
- A key prerequisite for using this server is having an existing Milvus instance with populated vector collections. This server provides the search capability but does not manage the Milvus deployment or data ingestion itself.
Install Milvus
Claude Desktop
Add this to claude_desktop_config.json.
{
"mcpServers": {
"milvus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-milvus"
]
}
}
}Cursor
Add this to ~/.cursor/mcp.json.
{
"mcpServers": {
"milvus": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-milvus"
]
}
}
}VS Code
Add this to your workspace settings.json.
{
"mcp.servers": {
"milvus": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-milvus"
]
}
}
}Reviews
Sign in to leave a review.
No reviews yet. Be the first!
Discussion(0)
No comments yet.