mcp-server-milvus 0.1.1.dev7__py3-none-any.whl → 0.1.1.dev8__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of mcp-server-milvus might be problematic. Click here for more details.
- {mcp_server_milvus-0.1.1.dev7.dist-info → mcp_server_milvus-0.1.1.dev8.dist-info}/METADATA +14 -18
- {mcp_server_milvus-0.1.1.dev7.dist-info → mcp_server_milvus-0.1.1.dev8.dist-info}/RECORD +4 -4
- {mcp_server_milvus-0.1.1.dev7.dist-info → mcp_server_milvus-0.1.1.dev8.dist-info}/WHEEL +0 -0
- {mcp_server_milvus-0.1.1.dev7.dist-info → mcp_server_milvus-0.1.1.dev8.dist-info}/entry_points.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: mcp-server-milvus
|
|
3
|
-
Version: 0.1.1.
|
|
3
|
+
Version: 0.1.1.dev8
|
|
4
4
|
Summary: MCP server for Milvus
|
|
5
5
|
Author: D. Danchev
|
|
6
6
|
Author-email: D. Danchev <12420863+danchev@users.noreply.github.com>
|
|
@@ -51,35 +51,31 @@ Before using this MCP server, ensure you have:
|
|
|
51
51
|
- Python 3.10 or higher
|
|
52
52
|
- A running [Milvus](https://milvus.io/) instance (local or remote)
|
|
53
53
|
- [uv](https://github.com/astral-sh/uv) installed (recommended for running the server)
|
|
54
|
+
- [npx](https://nodejs.org/en/download/) installed (for testing with MCP Inspector)
|
|
54
55
|
|
|
55
56
|
## Usage
|
|
56
57
|
|
|
57
|
-
The recommended way to use this MCP server is to run it directly with `
|
|
58
|
+
The recommended way to use this MCP server is to run it directly with `uvx` without installation. This is how both Claude Desktop and Cursor are configured to use it in the examples below.
|
|
58
59
|
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
```bash
|
|
62
|
-
git clone https://github.com/danchev/mcp-server-milvus.git
|
|
63
|
-
cd mcp-server-milvus
|
|
64
|
-
```
|
|
60
|
+
### Running the Server
|
|
65
61
|
|
|
66
62
|
Then you can run the server directly:
|
|
67
63
|
|
|
68
64
|
```bash
|
|
69
|
-
|
|
65
|
+
uvx mcp-server-milvus --milvus-uri http://localhost:19530
|
|
70
66
|
```
|
|
71
|
-
Alternatively, you can set environment variables using a `.env` file in your project directory and then run the server using the following `
|
|
67
|
+
Alternatively, you can set environment variables using a `.env` file in your project directory and then run the server using the following `uvx` command:
|
|
72
68
|
|
|
73
69
|
```bash
|
|
74
70
|
# Create a .env file with your Milvus configuration
|
|
75
71
|
cat > .env <<EOF
|
|
76
72
|
MILVUS_URI=http://localhost:19530
|
|
77
|
-
MILVUS_TOKEN=
|
|
73
|
+
MILVUS_TOKEN=root:Milvus
|
|
78
74
|
MILVUS_DB=default
|
|
79
75
|
EOF
|
|
80
76
|
|
|
81
77
|
# Run the server with the .env file
|
|
82
|
-
|
|
78
|
+
uvx --env-file .env mcp-server-milvus
|
|
83
79
|
```
|
|
84
80
|
|
|
85
81
|
### Running Modes
|
|
@@ -93,7 +89,7 @@ The server supports two running modes: **stdio** (default) and **SSE** (Server-S
|
|
|
93
89
|
- Usage:
|
|
94
90
|
|
|
95
91
|
```bash
|
|
96
|
-
|
|
92
|
+
uvx mcp-server-milvus@latest --milvus-uri http://localhost:19530
|
|
97
93
|
```
|
|
98
94
|
|
|
99
95
|
### SSE Mode
|
|
@@ -103,7 +99,7 @@ The server supports two running modes: **stdio** (default) and **SSE** (Server-S
|
|
|
103
99
|
- **Usage:**
|
|
104
100
|
|
|
105
101
|
```bash
|
|
106
|
-
|
|
102
|
+
uvx mcp-server-milvus@latest --sse --milvus-uri http://localhost:19530
|
|
107
103
|
```
|
|
108
104
|
|
|
109
105
|
- `--sse`: Enables SSE mode.
|
|
@@ -113,13 +109,13 @@ The server supports two running modes: **stdio** (default) and **SSE** (Server-S
|
|
|
113
109
|
If you want to debug in SSE mode, after starting the SSE service, enter the following command:
|
|
114
110
|
|
|
115
111
|
```bash
|
|
116
|
-
|
|
112
|
+
npx @modelcontextprotocol/inspector --transport sse --server-url http://localhost:8000/sse
|
|
117
113
|
```
|
|
118
114
|
|
|
119
115
|
The output will be similar to:
|
|
120
116
|
|
|
121
117
|
```plaintext
|
|
122
|
-
%
|
|
118
|
+
% npx @modelcontextprotocol/inspector --transport sse --server-url http://localhost:8000/sse
|
|
123
119
|
Starting MCP inspector...
|
|
124
120
|
⚙️ Proxy server listening on port 6277
|
|
125
121
|
🔍 MCP Inspector is up and running at http://127.0.0.1:6274 🚀
|
|
@@ -236,10 +232,10 @@ Create a `.cursor/mcp.json` file in your project root:
|
|
|
236
232
|
1. Start the service by running the following command:
|
|
237
233
|
|
|
238
234
|
```bash
|
|
239
|
-
uv run mcp-server-milvus --sse --milvus-uri http://your_sse_host
|
|
235
|
+
uv run mcp-server-milvus --sse --milvus-uri http://your_sse_host
|
|
240
236
|
```
|
|
241
237
|
|
|
242
|
-
> **Note**: Replace `http://your_sse_host` with your actual SSE host address
|
|
238
|
+
> **Note**: Replace `http://your_sse_host` with your actual SSE host address.
|
|
243
239
|
|
|
244
240
|
2. Once the service is up and running, overwrite the `mcp.json` file with the following content:
|
|
245
241
|
|
|
@@ -1521,7 +1521,7 @@ mcp_server_milvus/__init__.py,sha256=D3SNAB4nLWzf8mT79140AZCORuNGivn_qsaczlqfhqQ
|
|
|
1521
1521
|
mcp_server_milvus/blogpost.md,sha256=GwGlzSnWyotasaYjd_fxQ4dP_n9pMSitvVikNTqOmVc,1600
|
|
1522
1522
|
mcp_server_milvus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
1523
1523
|
mcp_server_milvus/server.py,sha256=hh8RhnBjOqJSu5X_wZ-XewSvoTUjezGG3esMr0oJTpE,29755
|
|
1524
|
-
mcp_server_milvus-0.1.1.
|
|
1525
|
-
mcp_server_milvus-0.1.1.
|
|
1526
|
-
mcp_server_milvus-0.1.1.
|
|
1527
|
-
mcp_server_milvus-0.1.1.
|
|
1524
|
+
mcp_server_milvus-0.1.1.dev8.dist-info/WHEEL,sha256=Pi5uDq5Fdo_Rr-HD5h9BiPn9Et29Y9Sh8NhcJNnFU1c,79
|
|
1525
|
+
mcp_server_milvus-0.1.1.dev8.dist-info/entry_points.txt,sha256=zBWlHVxTww6CTumm7kNnkm3_mwCj0Af5BCPgUo1AeDY,69
|
|
1526
|
+
mcp_server_milvus-0.1.1.dev8.dist-info/METADATA,sha256=ozSzLNDkcwKNP4mKljKA9ugIVLLOLH9bzwFvJx3vyH0,14633
|
|
1527
|
+
mcp_server_milvus-0.1.1.dev8.dist-info/RECORD,,
|
|
File without changes
|
{mcp_server_milvus-0.1.1.dev7.dist-info → mcp_server_milvus-0.1.1.dev8.dist-info}/entry_points.txt
RENAMED
|
File without changes
|