agent-orchestrationsearchcloud-platforms
313 查看 · 2026-07-07 更新
NetMind MCPServer MCP
这是一个MCP(模型上下文协议)服务器,提供了用于管理和与NetMind MCP Servers交互的端点,包括查询服务器、获取服务器详情以及处理用户评价和评分。
组件
工具
query_server:通过可选的模糊名称匹配和分页功能查询服务器列表。get_server:根据名称检索特定服务器的详细信息。add_update_rating_review:为特定服务器添加或更新评分和评论。- 列出特定服务器的评论和评分。
安装
需要UV(快速Python包和项目管理器)
如果未安装UV,请执行以下命令:
bash
使用Homebrew在macOS上
brew install uv
或者
bash
在macOS和Linux上
curl -LsSf https://astral.sh/uv/install.sh | sh
在Windows上
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
环境变量
您可以从Netmind获取API密钥。
NETMIND_API_TOKEN:您的Netmind API密钥
Cursor & Claude Desktop && Windsurf 安装
通过编辑Cursor/Claude/Windsurf配置文件将此工具作为MCP服务器添加。
json { "mcpServers": { "netmind-mcpserver-mcp": { "env": { "NETMIND_API_TOKEN": "XXXXXXXXXXXXXXXXXXXX" }, "command": "uvx", "args": [ "netmind-mcpserver-mcp" ] } } }
Cursor
- 在MacOS上:
/Users/your-username/.cursor/mcp.json - 在Windows上:
C:\Users\your-username\.cursor\mcp.json
Claude
- 在MacOS上:
~/Library/Application Support/Claude/claude_desktop_config.json - 在Windows上:
%APPDATA%\Claude\claude_desktop_config.json
Windsurf
- 在MacOS上:
/Users/your-username/.codeium/windsurf/mcp_config.json - 在Windows上:
C:\Users\your-username\.codeium\windsurf\mcp_config.json
服务配置
[{'mcpServers': {'netmind-mcpserver-mcp': {'args': ['netmind-mcpserver-mcp'], 'command': 'uvx', 'env': {'NETMIND_API_TOKEN': 'XXXXXXXXXXXXXXXXXXXX'}}}}]
来源
- 来源:github
- 链接:https://github.com/protagolabs/Netmind-MCPServer-MCP