- Home
- MCP servers
- NetMind MCPServer MCP
NetMind MCPServer MCP
- python
0
GitHub Stars
python
Language
7 months ago
First Indexed
3 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
You can manage NetMind MCP Servers from a single MCP server that exposes endpoints for querying servers, retrieving details, and handling user ratings and reviews. This server is designed to be used with MCP clients to streamline discovery and feedback across NetMind MCP Servers.
How to use
Connect to the NetMind MCP Server through your MCP client and use the available tools to explore the server list, view detailed information about a specific server, and read or submit ratings and reviews. Practical tasks you can perform include:
- Query the server list with optional fuzzy name matching and pagination
- Retrieve full details for a chosen server by name
- Add or update a rating and review for a server
- List existing reviews and ratings for a server These actions help you discover capabilities, compare options, and contribute feedback to improve the ecosystem.
How to install
Prerequisites you need before installing are:
- A working environment with UV installed (the Fast Python package and project manager)
- Access to an API key from Netmind for authenticating requests If UV isn’t installed, you can install it with one of the following methods.
# Using Homebrew on macOS
brew install uv
# On macOS and Linux.
curl -LsSf https://astral.sh/uv/install.sh | sh
# On Windows.
powershell -ExecutionPolicy ByPass -c "irm https://astral.sh/uv/install.ps1 | iex"
Environment variables and config
Obtain your API key from Netmind and set it as an environment variable to authorize requests to the MCP server.
The following environment variable is required for running the MCP server client configuration using the Cursor/Claude/Windsurf setup:
{
"mcpServers": {
"netmind-mcpserver-mcp": {
"env": {
"NETMIND_API_TOKEN": "XXXXXXXXXXXXXXXXXXXX"
},
"command": "uvx",
"args": [
"netmind-mcpserver-mcp"
]
}
}
}
Cursor, Claude, and Windsurf setup
Add this MCP server configuration to your Cursor, Claude Desktop, or Windsurf setup to run the NetMind MCP Server locally and connect with your MCP client.
Cursor
- On MacOS:
/Users/your-username/.cursor/mcp.json - On Windows:
C:\Users\your-username\.cursor\mcp.json
Claude
- On MacOS:
~/Library/Application\ Support/Claude/claude_desktop_config.json - On Windows:
%APPDATA%/Claude/claude_desktop_config.json
Windsurf
- On MacOS:
/Users/your-username/.codeium/windsurf/mcp_config.json - On Windows:
C:\Users\your-username\.codeium\windsurf\mcp_config.json
Tools and endpoints
The MCP server exposes the following tools to interact with NetMind MCP Servers:
Available tools
-
query_server: Query the server list with optional fuzzy name matching and pagination.
-
get_server: Retrieves detailed information about a specific server by its name.
-
add_update_rating_review: Adds or updates a rating and review for a specific server.
-
Lists reviews and ratings for a specific server.
Available tools
query_server
Query the server list with optional fuzzy name matching and pagination.
get_server
Retrieve detailed information about a specific server by its name.
add_update_rating_review
Add or update a rating and review for a specific server.
list_reviews_and_ratings
List existing reviews and ratings for a specific server.