What is the Dockerhub MCP server?
Docker Hub MCP — wraps the Docker Hub v2 API (free, no auth required for public data)
How to install Dockerhub
Copy-paste configuration for popular MCP clients.
transport: http
Config generated by PluginBench — verify against the source before use.Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"dockerhub": {
"url": "https://gateway.pipeworx.io/dockerhub/mcp"
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"dockerhub": {
"serverUrl": "https://gateway.pipeworx.io/dockerhub/mcp"
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"dockerhub": {
"type": "http",
"url": "https://gateway.pipeworx.io/dockerhub/mcp"
}
}
}Claude Desktop
Claude Desktop connects to remote servers via the mcp-remote bridge.
{
"mcpServers": {
"dockerhub": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://gateway.pipeworx.io/dockerhub/mcp"
]
}
}
}Claude Code
claude mcp add --transport http dockerhub https://gateway.pipeworx.io/dockerhub/mcp