Content
## HexagonML ModelManager MCP Server
This is a HexagonML MCP server that provides a Model context protocol interface for HexagonML ModelManager tools.
### Configuration For mcp integration on host (g: windsurf, vscode, claude desktop)
#### Local Configuration
```json
{
"mcpServers": {
"hex-mm-mcp": {
"command": "hex-mm-mcp/.venv/bin/mcp",
"args": ["run", "hex-mm-mcp/server/mm_mcp_server.py"]
}
}
}
```
#### Docker Configuration
```json
{
"mcpServers": {
"hex-mm-mcp-docker": {
"command": "docker",
"args": [
"run",
"--rm",
"-i",
"--network=host",
"-e",
"SECRET_KEY",
"-e",
"MM_API_BASE_URL",
"modelmanagerdev/mcp:v1"
],
"env": {
"SECRET_KEY": "your-secret-key",
"MM_API_BASE_URL": "your-api-base-url"
}
}
}
}
```
You Might Also Like
Ollama
Ollama enables easy access to large language models on various platforms.

n8n
n8n is a secure workflow automation platform for technical teams with 400+...
OpenWebUI
Open WebUI is an extensible web interface for customizable applications.
aws-lambda-mcp-cookbook
AWS Lambda MCP Cookbook provides Python examples for MCP server integration.
mcp-server-macos-use
MCP server in Swift for controlling macOS apps via accessibility APIs.
MonkeyMCP
MonkeyMCP is a .NET 9.0 server for Model Context Protocol facilitating...