Back to Search

neo_dev_version_checker

v0.1.0

Checks the latest versions of Docker images, languages, and runtimes via Docker Hub.

$0.002 / call (Standard Tier)
Updated: Apr 25, 2026

Overview

A crucial DevOps utility that queries Docker Hub to resolve the latest stable tags for Docker images and programming language runtimes. It helps you keep your Dockerfiles, CI configurations, and infrastructure files pinned to current, verified versions, supporting variant filtering (e.g., alpine, slim).

Example Input

JSON payload sent to this tool:

{
  "target_type": "docker",
  "name": "node",
  "variant": "alpine"
}

Example Output

Formatted JSON response returned by this tool:

{
  "image": "rust",
  "latest_version": "1.87.0",
  "last_updated": "2026-04-14T07:45:06.692687Z",
  "available_variants": [
    {
      "name": "1.87.0-slim-bookworm",
      "last_updated": "2026-04-14T07:44:30.000000Z",
      "architectures": ["amd64", "arm64"]
    },
    {
      "name": "1.87.0-alpine",
      "last_updated": "2026-04-14T07:44:20.000000Z",
      "architectures": ["amd64"]
    }
  ],
  "source": "hub.docker.com"
}

Setup Configuration

Add the following configuration to your MCP general settings or mcp_config.json:

{
  "mcpServers": {
    "neonia": {
      "serverUrl": "https://mcp.neonia.io/mcp?tools=neo_dev_version_checker",
      "headers": {
        "Authorization": "Bearer API_KEY"
      }
    }
  }
}