An MCP server that provides LLMs with the latest stable package versions when coding
Quick Install
Copy the config for your editor. Some servers may need additional setup — check the README.
Add to claude_desktop_config.json:
{
"mcpServers": {
"mcp-package-version": {
"command": "go",
"args": [
"run",
"github.com/sammcj/mcp-package-version@latest"
]
}
}
}
Run in terminal:
claude mcp add mcp-package-version go run github.com/sammcj/mcp-package-version@latest
Add to .cursor/mcp.json:
{
"mcpServers": {
"mcp-package-version": {
"command": "go",
"args": [
"run",
"github.com/sammcj/mcp-package-version@latest"
]
}
}
}