|
| 1 | +{ |
| 2 | + "$schema": "../schemas/server-definition.schema.json", |
| 3 | + "id": "io.milvus-mcp-uvx", |
| 4 | + "name": "Milvus (uvx)", |
| 5 | + "alias": "milvus", |
| 6 | + "description": "Connect to a Milvus vector database. Search and query vectors, manage collections, run full-text and hybrid search, and inspect schema across self-hosted Milvus or Zilliz Cloud.", |
| 7 | + "logo": "https://avatars.githubusercontent.com/u/18416694?v=4", |
| 8 | + "schema_version": "2.1", |
| 9 | + "categories": [ |
| 10 | + "database" |
| 11 | + ], |
| 12 | + "tags": [ |
| 13 | + "milvus", |
| 14 | + "zilliz", |
| 15 | + "vector-database", |
| 16 | + "vector-search", |
| 17 | + "embeddings", |
| 18 | + "database", |
| 19 | + "ai-ml" |
| 20 | + ], |
| 21 | + "transport": { |
| 22 | + "type": "stdio", |
| 23 | + "command": "uvx", |
| 24 | + "args": [ |
| 25 | + "mcp-server-milvus" |
| 26 | + ], |
| 27 | + "env": { |
| 28 | + "MILVUS_URI": "${input:MILVUS_URI}", |
| 29 | + "MILVUS_TOKEN": "${input:MILVUS_TOKEN}" |
| 30 | + }, |
| 31 | + "metadata": { |
| 32 | + "inputs": [ |
| 33 | + { |
| 34 | + "id": "MILVUS_URI", |
| 35 | + "label": "Milvus URI", |
| 36 | + "description": "Connection URI for your Milvus server or Zilliz Cloud cluster. Use http://localhost:19530 for a local instance, or the public endpoint of your Zilliz Cloud cluster.", |
| 37 | + "type": "url", |
| 38 | + "required": true, |
| 39 | + "secret": false, |
| 40 | + "placeholder": "http://localhost:19530" |
| 41 | + }, |
| 42 | + { |
| 43 | + "id": "MILVUS_TOKEN", |
| 44 | + "label": "Milvus Token", |
| 45 | + "description": "Authentication token for Milvus. For Zilliz Cloud this is the cluster's API key or user:password token. Leave empty for a local Milvus instance without authentication.", |
| 46 | + "type": "text", |
| 47 | + "required": false, |
| 48 | + "secret": true, |
| 49 | + "placeholder": "********************************", |
| 50 | + "obtain": { |
| 51 | + "url": "https://cloud.zilliz.com", |
| 52 | + "instructions": "1. Sign in to Zilliz Cloud\n2. Open your cluster\n3. Go to the Connect / Cluster Details panel\n4. Copy the Public Endpoint into Milvus URI\n5. Copy the API Key (token) into Milvus Token", |
| 53 | + "button_label": "Open Zilliz Cloud" |
| 54 | + } |
| 55 | + } |
| 56 | + ] |
| 57 | + } |
| 58 | + }, |
| 59 | + "auth": { |
| 60 | + "type": "optional_api_key", |
| 61 | + "instructions": "Provide your Milvus URI. A token is optional for local Milvus without auth, and required for Zilliz Cloud (use the cluster API key)." |
| 62 | + }, |
| 63 | + "contributor": { |
| 64 | + "name": "Zilliz", |
| 65 | + "github": "zilliztech", |
| 66 | + "url": "https://milvus.io" |
| 67 | + }, |
| 68 | + "links": { |
| 69 | + "repository": "https://github.com/zilliztech/mcp-server-milvus", |
| 70 | + "homepage": "https://milvus.io", |
| 71 | + "documentation": "https://github.com/zilliztech/mcp-server-milvus#readme" |
| 72 | + }, |
| 73 | + "platforms": [ |
| 74 | + "all" |
| 75 | + ], |
| 76 | + "capabilities": { |
| 77 | + "tools": true, |
| 78 | + "resources": false, |
| 79 | + "prompts": false, |
| 80 | + "read_only_mode": false |
| 81 | + }, |
| 82 | + "changelog_url": "https://github.com/zilliztech/mcp-server-milvus/releases" |
| 83 | +} |
0 commit comments