package version check mcp for VS Code
io.github.mshekow/package-version-check-mcp
Returns the latest package / dependency / tool versions for Python, NPM, Go, Docker, Helm, etc.
client:VS Code
transport:stdio
runtime:pypi
Install package version check mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "github-pat",
"description": "GITHUB_PAT",
"password": true
},
{
"type": "promptString",
"id": "package-version-cache-enabled",
"description": "PACKAGE_VERSION_CACHE_ENABLED",
"password": true
}
],
"servers": {
"package-version-check-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"package-version-check-mcp"
],
"env": {
"GITHUB_PAT": "${input:github-pat}",
"PACKAGE_VERSION_CACHE_ENABLED": "${input:package-version-cache-enabled}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs