GitHub Stars
383
User Rating
Not Rated
Favorites
0
Views
22
Forks
52
Issues
8
Installation
Difficulty
BeginnerEstimated Time
5-10 minutes
Installation
Installation
Prerequisites
Please specify required software and versions:UV: Package manager
Python: 3.12 or higher
Docker: Docker Desktop or Docker Engine
Claude Desktop: Latest version
Installation Steps
1. Clone Repository
bash
git clone https://github.com/QuantGeekDev/docker-mcp.git
cd docker-mcp
2. Create and Activate Virtual Environment
bash
python -m venv venv
source venv/bin/activate # On Windows: venv\Scripts\activate
3. Install Dependencies
bash
uv sync
4. Configure Claude Desktop
Editclaude_desktop_config.json to add the MCP server:
json
{
"mcpServers": {
"docker-mcp": {
"command": "uvx",
"args": [
"docker-mcp"
]
}
}
}
Troubleshooting
Common Issues
Issue: Server won't start Solution: Check Python version and reinstall dependencies. Issue: Not recognized by Claude Desktop Solution: Verify configuration file path and syntax.Additional Resources
Author Information
0
Followers
0
Repositories
0
Gists
0
Total Contributions
Related MCPs
mcp_safe_local_python_executor
32
Stdio MCP Server wrapping custom Python runtime (LocalPythonExecutor) from Hugging Faces' `smolagents` framework. The runtime combines the ease of setup (compared to docker, VM, cloud runtimes) while providing safeguards and limiting operations/imports that are allowed inside the runtime.