================== /// MCP /// /// MCP /// ================== [server:online] [protocol:ready]
mcp-package-version
by sammcj
MCP server that lets LLMs query the latest stable versions of packages/images/models across npm, PyPI, Maven, Go Proxy, SwiftPM, Docker Hub, GHCR, AWS Bedrock, and GitHub Actions.
109
19
Open SourceInstallation
1. Prerequisites
• Go ≥1.22 installed and in your PATH.
• (Optional) A GitHub token with “public_repo” scope to avoid GitHub-API rate-limits – set it as GITHUB_TOKEN.
2. Clone the repository
git clone https://github.com/sammcj/mcp-package-version.git
cd mcp-package-version
3. Build the binary
go build -o mcp-package-version ./cmd/server
(On Windows it will build `mcp-package-version.exe`).
4. Run the MCP server
# Default :8080
PORT=8080 ./mcp-package-version
5. Container option
docker build -t mcp-package-version .
docker run -p 8080:8080 -e GITHUB_TOKEN=$GITHUB_TOKEN mcp-package-version
6. Verify the service
curl http://localhost:8080/healthz
Documentation
License: MIT License
Updated 7/30/2025