MCP server for Milvus vector database with semantic and full-text search capabilities
If you already use Simple, the simple mcp server is the piece that lets your assistant work with it directly. MCP server for Milvus vector database with semantic and full-text search capabilities.
This simplified MCP server was created for specific use cases where the official server may not be the best fit:
Installation goes through your MCP client rather than a global install: point it at simple-milvus-mcp on npm and it is fetched when the client starts. The copy-paste blocks for Claude Desktop, Claude Code and Cursor are further down this page.
Configuration is passed through the environment: GEMINI_API_KEY, OPENAI_API_KEY, VERTEX_PROJECT_ID, VERTEX_LOCATION, VERTEX_CREDENTIALS. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.
Among the database access options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. It is maintained by blevinstein; worth a glance at recent repository activity before you build anything load-bearing on it.
SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.
{
"mcpServers": {
"milvus-1": {
"command": "npx",
"args": ["-y", "simple-milvus-mcp"],
"env": {
"GEMINI_API_KEY": "your-value",
"OPENAI_API_KEY": "your-value",
"VERTEX_PROJECT_ID": "your-value",
"VERTEX_LOCATION": "your-value",
"VERTEX_CREDENTIALS": "your-value"
}
}
}
}Add to claude_desktop_config.json, then restart Claude Desktop.
| Variable | Description | Required |
|---|---|---|
| GEMINI_API_KEY | Credential the server authenticates with. | Yes |
| OPENAI_API_KEY | Credential the server authenticates with. | Yes |
| VERTEX_PROJECT_ID | Configuration value read at startup. | Optional |
| VERTEX_LOCATION | Configuration value read at startup. | Optional |
| VERTEX_CREDENTIALS | Configuration value read at startup. | Optional |
Read-only SQL access to Postgres — let your assistant inspect schemas and answer questions from real data.
Manage your whole Supabase project in conversation — database, auth, storage, Edge Functions and branches.
Query, modify and analyse local SQLite databases in conversation — the fastest way to chat with a data file.
Metabase ships its own MCP endpoint — search your BI content, build and run queries, and save questions and dashboards without leaving the chat.
Official MongoDB server covering data, schemas and Atlas management — from find queries to spinning up clusters.
Serverless Postgres with database branching — point your assistant at Neon and let it work on disposable copies.