harbor registry mcp for VS Code
io.github.mshegolev/harbor-registry-mcp
Harbor Registry MCP — projects, repos, artifacts, storage reports, cleanup (with dry-run).
client:VS Code
transport:stdio
runtime:pypi
Install harbor registry mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "harbor-url",
"description": "HARBOR_URL",
"password": true
},
{
"type": "promptString",
"id": "harbor-username",
"description": "HARBOR_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "harbor-password",
"description": "HARBOR_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "harbor-ssl-verify",
"description": "HARBOR_SSL_VERIFY",
"password": true
}
],
"servers": {
"harbor-registry-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"harbor-registry-mcp"
],
"env": {
"HARBOR_URL": "${input:harbor-url}",
"HARBOR_USERNAME": "${input:harbor-username}",
"HARBOR_PASSWORD": "${input:harbor-password}",
"HARBOR_SSL_VERIFY": "${input:harbor-ssl-verify}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs