I craft unique cereal names, stories, and ridiculously cute Cereal Baby images.

MCP-PYMILVUS-CODE-Generate-Helper
Ein Pimilvus-Code generiert Helfer mit SSE-basierter MCP-Unterstützung
3 years
Works with Finder
2
Github Watches
2
Github Forks
0
Github Stars
mcp-pymilvus-code-generate-helper
A Model Context Protocol server that retrieves relevant code snippets or documents to help generating pymilvus code.
Prerequisites
Before using this MCP server, ensure you have:
- Python 3.10 or higher
- A running Milvus instance (local or remote)
- uv installed (recommended for running the server)
Usage
The recommended way to use this MCP server is to run it directly with uv
without installation. This is how both Claude Desktop and Cursor are configured to use it in the examples below. The server now support both sse and stdio:
SSE
Running the Server
uv run src/mcp_pymilvus_code_generate_helper/sse_server.py
# mcp server will connect to local milvus server(http://localhost:19530) by default if no milvus_uri is provided
# to connect to a remote milvus server, you can specify the milvus_uri like this:
# uv run src/mcp_pymilvus_code_generate_helper/sse_server.py --milvus_uri http://<your-server-ip>:<your-server-port>
Usage with Cursor
- Go to
Cursor
>Preferences
>Cursor Settings
>MCP
- Click on the
+ Add New MCP Server
button - Fill out the form:
-
Name:
pymilvus-code-generate-helper
(or any name you prefer) -
Type: Select
sse
-
Server URL:
http://localhost:23333/sse
(replace with your server's IP address)
-
Name:
- Click
Save
You can also directly edit mcp.json
as below:
{
"mcpServers": {
"pymilvus-code-generate-helper": {
"url": "http://localhost:23333/sse"
}
}
}
Usage with Claude Desktop
⚠️ Claude desktop is currently limited in its ability to connect to remote MCP servers
STDIO
Running the Server
uv run src/mcp_pymilvus_code_generate_helper/stdio_server.py
# mcp server will connect to local milvus server(http://localhost:19530) by default if no milvus_uri is provided
# to connect to a remote milvus server, you can specify the milvus_uri like this:
# uv run src/mcp_pymilvus_code_generate_helper/stdio_server.py --milvus_uri http://<your-server-ip>:<your-server-port>
Usage with Cursor
- Go to
Cursor
>Preferences
>Cursor Settings
>MCP
- Click on the
+ Add New MCP Server
button - Fill out the form:
-
Name:
pymilvus-code-generate-helper
(or any name you prefer) -
Type: Select
stdio
-
Command:
/PATH/TO/uv --directory /path/to/mcp-pymilvus-code-generator run src/mcp_pymilvus_code_generate_helper/stdio_server.py
-
Name:
- Click
Save
You can also directly edit mcp.json
as below:
{
"mcpServers": {
"pymilvus-code-generate-helper": {
"command": "/PATH/TO/uv",
"args": [
"--directory",
"/path/to/mcp-pymilvus-code-generator",
"run",
"src/mcp_pymilvus_code_generate_helper/stdio_server.py",
"--milvus_uri",
"http://localhost:19530"
],
"env": {
"OPENAI_API_KEY": "YOUR OPENAI API KEY HERE"
}
}
}
}
Usage with Claude Desktop
- Install Claude Desktop from https://claude.ai/download
- Open your Claude Desktop configuration:
- macOS:
~/Library/Application Support/Claude/claude_desktop_config.json
- macOS:
- Add the following configuration:
{
"mcpServers": {
"pymilvus-code-generate-helper": {
"command": "/PATH/TO/uv",
"args": [
"--directory",
"/path/to/mcp-server-milvus/src/mcp_server_milvus",
"run",
"src/mcp_pymilvus_code_generate_helper/stdio_server.py",
"--milvus_uri",
"http://localhost:19530"
],
"env": {
"OPENAI_API_KEY": "YOUR OPENAI API KEY HERE"
}
}
}
}
- Restart Claude Desktop
⚠️ Note: Remember to set the OPENAI_API_KEY environment variable
Available Tools
The server provides the following tools:
-
milvus-pypmilvus-code-generate-helper
: Find related pymilvus code/documents to help generating code from user input in natural language- Parameters:
-
query
: User query for generating code
-
- Parameters:
-
milvus-translate-orm-to-milvus-client-code-helper
: Find related orm and pymilvus client code/documents to help translating orm code to milvus client from user input in natural language- Parameters:
-
query
: User query for translating orm code to milvus client code
-
- Parameters:
Contribution
Contributions are welcome! If you have ideas for improving the retrieve result, please submit a pull request or open an issue.
License
This project is licensed under the MIT License.
相关推荐
Evaluator for marketplace product descriptions, checks for relevancy and keyword stuffing.
Confidential guide on numerology and astrology, based of GG33 Public information
A geek-themed horoscope generator blending Bitcoin prices, tech jargon, and astrological whimsy.
Converts Figma frames into front-end code for various mobile frameworks.
Therapist adept at identifying core issues and offering practical advice with images.
Advanced software engineer GPT that excels through nailing the basics.
Entdecken Sie die umfassendste und aktuellste Sammlung von MCP-Servern auf dem Markt. Dieses Repository dient als zentraler Hub und bietet einen umfangreichen Katalog von Open-Source- und Proprietary MCP-Servern mit Funktionen, Dokumentationslinks und Mitwirkenden.
Ein einheitliches API-Gateway zur Integration mehrerer Ethercan-ähnlicher Blockchain-Explorer-APIs mit Modellkontextprotokoll (MCP) für AI-Assistenten.
Mirror ofhttps: //github.com/bitrefill/bitrefill-mcp-server
Reviews

user_rlJbueiq
I have been using the CODING DevOps MCP Server for a while now, and it has significantly streamlined my development and deployment processes. The server is robust, efficient, and incredibly user-friendly. Kudos to yupengfei1209 for creating such a fantastic tool that integrates seamlessly into my workflow. Highly recommend checking it out: https://mcp.so/server/coding_devops_mcp_server/yupengfei1209