Back to Search
neonia_dev_version_checker
0.2.0Resolves semantic-version Docker Hub tags and immutable digest references.
$0.002 / call (Standard Tier)
Updated: Sep 21, 2026
Overview
A Docker Hub tag resolver that semantically sorts exact version tags instead of treating update time as version order.
Example Input
JSON payload sent to this tool:
{
"target_type": "docker",
"name": "node",
"variant": "alpine",
"channel": "stable",
"architecture": "amd64"
}Example Output
Formatted JSON response returned by this tool:
{
"target_type": "docker_image",
"image": "node",
"recommended_version": "22.1.0",
"recommended_tag": "22.1.0-alpine",
"recommended_digest": "sha256:...",
"immutable_reference": "node@sha256:..."
}Setup Configuration
Add the following configuration to your MCP general settings or mcp_config.json:
{
"mcpServers": {
"neonia": {
"serverUrl": "https://mcp.neonia.io/mcp?tools=neonia_dev_version_checker",
"headers": {
"Authorization": "Bearer API_KEY"
}
}
}
}