mukeshiit422/dockerhub-mcp-server
3.1
If you are the rightful owner of dockerhub-mcp-server and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcphub.com.
An MCP server that exposes Docker Hub & OCI registry features to AI assistants.
DockerHub MCP Server
An MCP server that exposes Docker Hub & OCI registry features to AI assistants.
Quick Start
pnpm i
cp .env.example .env
pnpm run dev
Test command
pnpm jest --clearCache
pnpm test
MCP server local congiguration
{
"mcpServers": {
"dockerhub": {
"command": "node",
"args": ["/absolute_path/dockerhub-mcp-server/dist/index.js"],
"env": {
"DOCKERHUB_USERNAME": "",
"DOCKERHUB_PASSWORD": "",
},
"disabled": false
}
}
}
MCP server docker congiguration
{
"mcpServers": {
"dockerhub": {
"command": "docker",
"args": [
"run","--rm","-i",
"-e","DOCKERHUB_USERNAME=your-user",
"-e","DOCKERHUB_PASSWORD=your-password",
"{repo_name}:latest"
],
"disabled": false
}
}
}