docker-facts
Server Details
Does that Docker tag actually exist? Real tags, sizes and platforms, live from Docker Hub.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Available Tools
3 toolscheck_image_tagCheck Image TagARead-onlyIdempotentInspect
Does this image:tag exist, how big is it, and which platforms does it cover?
Use this before writing a FROM line or a compose file. On a hit it returns size, platforms, arm64/amd64 support and the digest. On a miss it says whether the IMAGE exists but the tag is wrong, and lists real tags newest first so the caller can correct itself. Defaults to tag "latest" when none is given.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | No | Tag to check, e.g. "20-alpine". Defaults to "latest". | latest |
| name | Yes | Docker image name as you would write it in a FROM line: "node", "postgres", "grafana/grafana". Official images may omit the "library/" prefix. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tag | Yes | |
| image | Yes | |
| digest | No | Content digest, for pinning. |
| exists | Yes | Whether this exact image:tag exists on Docker Hub. |
| status | No | Docker Hub tag status, e.g. "active". |
| meaning | Yes | One sentence, safe to show a user verbatim. |
| size_mb | No | Compressed size in MB. |
| platforms | No | os/arch strings this tag was built for, e.g. "linux/arm64". |
| reference | No | The full reference, safe to paste into a FROM line. |
| suggestion | No | Present only on a miss: the most recently updated real tag. |
| image_exists | No | Present only on a miss. Distinguishes a wrong tag from a wrong image name. |
| last_updated | No | When the tag was last pushed (ISO 8601). A tag untouched for years is usually the wrong choice. |
| available_tags | No | Present only on a miss: real tags, newest first, so the caller can correct itself. |
| supports_amd64 | No | |
| supports_arm64 | No | Answers the Apple Silicon and Graviton question directly. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds meaningful behavioral detail beyond annotations: it explains hit results (size, platforms, arm64/amd64 support, digest), miss results (image exists but tag wrong; real tags listed newest first), and the default-to-latest behavior. This gives the agent a model of the tool's behavior in both outcomes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact and front-loaded: a clarifying question, a single use-case sentence, then conditional hit/miss behavior and the default rule. Every sentence earns its place, and there is no filler or redundant repetition of schema fields.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read-only lookup tool with a rich output schema and strong annotations, the description is complete. It covers the intended use case, the default parameter, both hit and miss outcomes, and the self-correction capability. There are no critical gaps an agent would need to guess about.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the parameter burden is already carried by the schema. The tool description adds the default-to-latest behavior and the 'before writing a FROM line' context, but the schema already explains the name format and tag examples. The description does not meaningfully extend the parameter semantics beyond what the schema provides.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description opens with a specific, answerable question: 'Does this image:tag exist, how big is it, and which platforms does it cover?' This clearly states the verb, resource, and scope. It also differentiates itself from sibling tools by describing miss behavior that returns real tags so the caller can correct the tag, which is a distinct capability beyond generic image info or tag listing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives explicit guidance: 'Use this before writing a FROM line or a compose file.' This clearly tells the agent when to invoke the tool. It doesn't explicitly name alternatives or state when not to use it, but the hit/miss behavior and correction capability give enough contextual grounding to select it appropriately.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_image_infoGet Image InfoARead-onlyIdempotentInspect
Repository facts: official status, pulls, stars, whether it is archived.
Use to judge whether an image is the canonical one and still maintained. Archived images still pull but receive no security patches.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Docker image name as you would write it in a FROM line: "node", "postgres", "grafana/grafana". Official images may omit the "library/" prefix. |
Output Schema
| Name | Required | Description |
|---|---|---|
| image | No | |
| pulls | No | |
| stars | No | |
| exists | No | |
| hub_url | No | Page a human can open. |
| official | No | True for Docker Official Images (the "library" namespace). |
| description | No | |
| is_archived | No | Archived images still pull but receive no further updates, including security patches. |
| last_updated | No |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and idempotentHint=true, so the operation is clearly safe. The description adds useful non-obvious context: 'Archived images still pull but receive no security patches.' No contradiction with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the core facts, and each sentence adds value. There is no wasted text or redundant restating of the title.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a one-parameter, read-only tool with an output schema and strong annotations, the description covers purpose, use case, and maintenance implication. Nothing important is missing for an agent to call it correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage for the single required parameter is 100%, so the schema fully documents the 'name' format. The description does not add extra parameter detail, but the baseline of 3 is appropriate when the schema carries the burden.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states what the tool returns: repository facts such as official status, pulls, stars, and archived state. It is easy to understand the tool's purpose, though the description does not explicitly contrast it with the sibling tag-related tools.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description gives clear usage intent: 'Use to judge whether an image is the canonical one and still maintained.' It does not mention exclusions or alternatives, but the context is sufficient for a simple read-only metadata tool.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_image_tagsList Image TagsARead-onlyIdempotentInspect
Real tags for an image, most recently updated first.
Use when choosing a tag rather than verifying one. Each entry carries size and platform list, so a choice can be made without a second call.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Docker image name as you would write it in a FROM line: "node", "postgres", "grafana/grafana". Official images may omit the "library/" prefix. | |
| limit | No | How many tags to return, 1 to 100. Defaults to 25. |
Output Schema
| Name | Required | Description |
|---|---|---|
| tags | No | |
| count | No | |
| image | No | |
| exists | No | |
| newest_first | No | Tags are ordered by last update, most recent first. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint=false. The description adds genuinely useful behavioral context beyond those: the result ordering ('most recently updated first') and the fact that each entry includes size and platform list.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences with no wasted content. The first sentence names the resource and ordering; the second provides selection guidance and payload context. Every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With full param documentation, clear annotations, and an output schema present, the description covers the key behavioral traits (sort order, payload contents) and selection context. Nothing essential is missing for an agent to invoke this tool correctly.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents 'name' and 'limit' clearly. The tool description adds no additional parameter-specific meaning, so baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb and resource: 'Real tags for an image, most recently updated first.' It also differentiates the tool from a verification-oriented sibling by framing it as 'choosing a tag rather than verifying one.'
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly says when to use the tool ('Use when choosing a tag'), when not to use it ('rather than verifying one'), and explains the practical benefit: each entry carries size and platform list, so a choice can be made without a second call.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
3 tool updates
- First observed
check_image_tag - First observed
get_image_info - First observed
list_image_tags
Frequently Asked Questions
Claiming proves that you control a remote MCP connector. It does not move, proxy, or interrupt the server.
Open the connector listing, choose Claim ownership, and sign in to Glama.
Complete one verification method:
GitHub identity — fastest for official registry listings. For a namespace such as
io.github.alice/server, link the matching GitHub user, then choose Claim with GitHub. An organization namespace such asio.github.acme/serveralso needs that organization to have installed the Glama AI GitHub App and approved its permissions, because GitHub discloses organization membership only to apps it has installed. Use HTTP or DNS when it has not.HTTP challenge — works when you can deploy a public file. Generate a token, publish the exact JSON Glama shows at
/.well-known/glama.jsonon the same origin as the connector, then choose Check HTTP challenge.DNS challenge — works when you control DNS but cannot change the server. Generate a token, create the exact TXT record Glama shows, wait for it to propagate, then choose Check DNS challenge.
After verification, Glama sends a confirmation email and gives you access to listing details, thumbnails, health checks, and analytics. Keep the HTTP file or DNS record in place: Glama periodically checks it and ownership remains verified while the token is discoverable.
The HTTP ownership file has this structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"claim": "glama_claim_..."
}Claim tokens are opaque, stable, and bound to the signed-in Glama account. They contain no email address or other personal information. If Glama can no longer discover a verified HTTP or DNS token, it starts a seven-day grace period before removing claim-based access. Restore the same token during that period to keep ownership verified. Never publish an email address, Glama session token, GitHub token, or connector credential as ownership proof.
If verification fails, confirm that you copied the current token exactly. The HTTP file must be public, return valid JSON with a successful HTTP response, and stay on the connector's origin. DNS changes may need more time to propagate. A claim cannot transfer to a different origin or hostname: if the connector target changes, Glama starts the grace period and the new target must be claimed separately after the previous claim is released.
For a connector linked to the official MCP Registry, registry updates continue to replace its name, description, and URL by default. After claiming, open Manage connector and enable Use Glama listing details as the source of truth if edits made on Glama should be preserved. Categories and thumbnails are always managed on Glama; registry linkage and technical connection settings continue to sync.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
To improve your MCP server's ranking:
Claim ownership of the server listing
Complete the server profile with an accurate description and thumbnail
Provide a test profile so Glama can connect to and evaluate the server
Keep tool definitions clear and complete to earn a high Tool Definition Quality Score (TDQS)
Route real usage through the Glama Gateway; more recorded successful server uses also improve the ranking
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Connectors
Docker Hub MCP — wraps the Docker Hub v2 API (free, no auth required for public data)
Verify PyPI and npm packages, symbols, and version diffs against real artifacts. Free, no account.
Hadolint-grade Dockerfile audit — 19 checks: secrets, privileges, supply chain, hygiene.
Latest versions, LTS windows, and EOL dates for 300+ products. Fresh ground truth for stale models.
Related MCP Servers
- FlicenseAqualityDmaintenanceEnables AI agents to retrieve the latest semantic version tags for container images from Docker Hub, GHCR, Quay, and other OCI registries, allowing them to pin specific versions for reproducible deployments.5-

Docker Hub MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceEnables LLMs to search Docker Hub repositories, discover container images, and manage Docker Hub repositories and tags through natural language queries. Supports both public content access and authenticated operations with Docker Personal Access Tokens.162Apache 2.0- AlicenseAqualityBmaintenanceMCP server for querying Docker Hub image statistics, including pull counts, stars, descriptions, and publisher catalogs. No API key required.4MIT
- FlicenseNot gradedqualityDmaintenanceEnables AI assistants to search, analyze, and manage Docker images on Docker Hub through standardized MCP tools, with features including security scanning, layer analysis, and image comparison.-
Glama MCP Gateway
Add one secure layer between your agents and this server.
TDQS
Each tool has a distinct primary purpose: verifying a specific tag, inspecting repository metadata, and browsing available tags. There is minor overlap because check_image_tag lists real tags on a miss and both it and list_image_tags return size/platform details, but the stated use cases separate them clearly.
All tool names follow a consistent imperative verb_noun pattern with snake_case: check_image_tag, get_image_info, list_image_tags. The naming is predictable and makes the action and target obvious for each tool.
Three tools is well-scoped for a focused Docker image facts server. Each tool covers a necessary, non-redundant operation and none feel like filler.
The set covers the key workflows for evaluating Docker images: verifying a tag, listing available tags, and assessing repository maintenance. A possible minor gap is lack of a search/discovery tool for finding image names, but for the stated fact-checking purpose the surface is nearly complete.