Skip to main content
Glama
rog0x
by rog0x

Server Quality Checklist

67%
Profile completionA complete profile improves this server's visibility in search results.
  • Latest release: v1.0.0

  • Disambiguation5/5

    Each tool targets a distinct image-related task: reading HTTP headers, finding favicons, extracting social media images, generating responsive markup, and creating placeholders. No two tools could be confused for one another.

    Naming Consistency2/5

    Tool names are a mix of verb-initial names (find_favicons, extract_og_image, generate_placeholder) and noun-phrase names (image_metadata, responsive_images). The lack of a consistent verb_noun pattern makes the set feel less predictable.

    Tool Count5/5

    The server has 5 focused tools, which is well within the ideal range for a single-purpose utility server. Each tool earns its place without bloat.

    Completeness4/5

    The tools comprehensively cover common web image workflows: inspecting, discovering, generating, and integrating images. A minor gap is the lack of image transformation (e.g., resizing) but this is not clearly in scope.

  • Average 4/5 across 5 of 5 tools scored.

    See the Tool Scores section below for per-tool breakdowns.

    • No community issues in the last 6 months
    • 0 commits in the last 12 weeks
    • No stable releases found
    • No critical vulnerability alerts
    • No high-severity vulnerability alerts
    • No code scanning findings
    • CI status not available
  • This repository is licensed under MIT License.

  • This repository includes a README.md file.

  • No tool usage detected in the last 30 days. Usage tracking helps demonstrate server value.

    Tip: use the "Try in Browser" feature on the server page to seed initial usage.

  • Add a glama.json file to provide metadata about your server.

  • If you are the author, simply .

    If the server belongs to an organization, first add glama.json to the root of your repository:

    {
      "$schema": "https://glama.ai/mcp/schemas/server.json",
      "maintainers": [
        "your-github-username"
      ]
    }

    Then . Browse examples.

  • Add related servers to improve discoverability.

How to sync the server with GitHub?

Servers are automatically synced at least once per day, but you can also sync manually at any time to instantly update the server profile.

To manually sync the server, click the "Sync Server" button in the MCP server admin interface.

How is the quality score calculated?

The overall quality score combines two components: Tool Definition Quality (70%) and Server Coherence (30%).

Tool Definition Quality measures how well each tool describes itself to AI agents. Every tool is scored 1–5 across six dimensions: Purpose Clarity (25%), Usage Guidelines (20%), Behavioral Transparency (20%), Parameter Semantics (15%), Conciseness & Structure (10%), and Contextual Completeness (10%). The server-level definition quality score is calculated as 60% mean TDQS + 40% minimum TDQS, so a single poorly described tool pulls the score down.

Server Coherence evaluates how well the tools work together as a set, scoring four dimensions equally: Disambiguation (can agents tell tools apart?), Naming Consistency, Tool Count Appropriateness, and Completeness (are there gaps in the tool surface?).

Tiers are derived from the overall score: A (≥3.5), B (≥3.0), C (≥2.0), D (≥1.0), F (<1.0). B and above is considered passing.

Tool Scores

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are present, so the description carries the transparency burden. It states that it returns all social media preview images found, which gives some behavioral detail, but it does not clarify whether the return values are URLs or binary image data, nor how missing images or redirects are handled. This leaves ambiguity about actual behavior.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two sentences, front-loaded with the action verb 'Extract', and contains no redundant information. It efficiently states the tool's function and output in a clear, structured manner.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness3/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a simple tool with one parameter and no output schema, the description covers core purpose and return behavior. However, the exact return type (URL vs image data) is ambiguous, and there is no mention of error handling or prerequisites. This leaves the description incomplete for fully informed invocation.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema fully describes the url parameter with high coverage, so the baseline is 3. The description adds only 'from any URL', which suggests no restrictions but does not provide additional meaning beyond the schema. No further parameter details are given.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly identifies the tool as extracting Open Graph, Twitter card, and Apple touch icon images from URLs, which distinguishes it from sibling tools like find_favicons or image_metadata. The verb 'extract' and the specific resource list are unambiguous.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage for retrieving social media preview images but does not explicitly state when to prefer this over sibling tools or mention any exclusions. Without alternative guidance, the usage context is only implied.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations provided, the description carries the full burden of behavioral disclosure. It clearly explains the methods used (checks /favicon.ico, parses HTML link tags, inspects manifest.json) and the return value (all found favicons with sizes and types). This goes beyond a simple mutation hint and gives the agent a realistic picture of the tool's operations, though it omits details like error handling or redirect behavior.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is extremely concise at two sentences. The first sentence states the core action, and the second adds the methods and output in a structured way. There is zero filler or redundancy, making it easy for an agent to parse quickly.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the tool's simplicity (one parameter, no output schema, no annotations), the description is quite complete: it covers what the tool does, how it does it, and what the response includes. The only missing piece is a concrete example of the returned data structure, but the mention of 'sizes and types' gives a reasonable picture. For a tool of this complexity, this is above-average completeness.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    Schema coverage is 100% because the only parameter 'url' has a descriptive text ('Website URL to find favicons for (e.g. https://example.com)'). The description adds no new parameter-specific meaning beyond what the schema already provides, so the baseline 3 applies.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb ('Find') and resource ('all favicons for a website'), and clearly distinguishes itself from sibling tools like extract_og_image and image_metadata by focusing solely on favicon discovery. It also enumerates the exact sources checked (favicon.ico, HTML link tags, manifest.json), leaving no ambiguity about its purpose.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines3/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies when to use the tool (whenever favicons are needed for a website) but does not explicitly state alternatives or exclusions. While the context is clear, the agent is not told to prefer this over siblings or what conditions make it unsuitable, so usage guidance is only implicit.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the burden of disclosure. It explains that the tool works via HTTP headers and does not download images, but it does not mention potential edge cases like missing headers, redirects, or rate limits. This is adequate for a simple read operation but not comprehensive.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two short, focused sentences. It front-loads the action and enumerates specific metadata types without any redundant or vague wording.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a tool with only one parameter and no output schema, the description effectively communicates what metadata will be returned and the method used. It lacks edge-case handling details, but is otherwise complete enough for an agent to invoke it correctly.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The schema already fully describes the url parameter as 'Direct URL to an image file' (100% coverage). The description adds context about HTTP headers but does not further clarify the parameter itself, so a baseline 3 is appropriate.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description clearly states the tool reads image metadata from a URL via HTTP headers, listing specific fields like content-type, file size, and cache info. This definitively distinguishes it from siblings such as find_favicons or generate_placeholder.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage for fetching metadata without downloading the image ('No image downloading required'), which gives clear context. However, it does not explicitly mention when not to use it or compare to alternatives, so it falls short of a 5.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior3/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    No annotations are provided, so the description carries the full burden. It clearly states the tool 'produces multiple size variants with proper HTML markup', implying a safe, read-only operation. However, it does not disclose whether external requests are made, the exact format of the returned HTML, or any side effects. This is adequate but not rich.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    The description is two concise sentences, front-loaded with the main action ('Generate srcset and <picture> element HTML'), and contains no superfluous words. Every sentence contributes to understanding the tool's purpose and behavior.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    For a tool with 7 parameters, no annotations, and no output schema, the description gives a solid overview: it states the main behavior (generating HTML), the input (base URL), and the output (markup). The schema documents parameter details, so the description is sufficiently complete, though a mention of the exact return type (e.g., string) would be slightly clearer.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema covers 100% of parameters with individual descriptions, so the description does not need to add much. It only references 'base image URL', which is already in the schema. No additional semantic value is provided beyond the schema.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses the specific verb 'Generate' with the resource 'srcset and <picture> element HTML', clearly distinguishing it from sibling tools like image_metadata, find_favicons, extract_og_image, and generate_placeholder. It exactly states what the tool does: produces responsive image HTML from a base URL.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description gives clear context: use when you need responsive image markup with srcset and <picture>. It does not explicitly state when not to use it or reference alternatives, but the context is unambiguous and sufficient for a tool with this simplicity.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

  • Behavior4/5

    Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

    With no annotations, the description carries the full burden. It discloses that the tool returns a URL plus HTML and Markdown markup, which is key behavioral output. It doesn't mention limitations like rate limits or external service dependency, but for a simple generation tool this is reasonably transparent.

    Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

    Conciseness5/5

    Is the description appropriately sized, front-loaded, and free of redundancy?

    Two sentences, front-loaded with the core action and service, with no filler. Every phrase adds value: what it generates, what it supports, and what it returns.

    Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

    Completeness4/5

    Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

    Given the rich 9-parameter schema and no output schema, the description's mention of return format (URL + HTML + Markdown) fills a key gap. It lacks explicit guidance on multi-size generation or defaults, but these are covered in schema descriptions, so overall it's complete enough for effective use.

    Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

    Parameters3/5

    Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

    The input schema already documents all 9 parameters with 100% coverage, so the description need not repeat them. The description adds a high-level grouping ('size, colors, text, format, and font') that maps to the parameters but doesn't introduce new semantic details beyond the schema.

    Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

    Purpose5/5

    Does the description clearly state what the tool does and how it differs from similar tools?

    The description uses a specific verb ('Generate'), a clear resource ('placeholder image URLs'), and names the service ('placehold.co'). It clearly distinguishes this tool from siblings like image_metadata or extract_og_image, which serve different purposes.

    Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

    Usage Guidelines4/5

    Does the description explain when to use this tool, when not to, or what alternatives exist?

    The description implies usage for creating placeholder images and lists supported customization options, giving clear context about when to use it. It does not explicitly name alternatives or exclusions, but sibling names make the distinction obvious enough.

    Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

GitHub Badge

Glama performs regular codebase and documentation scans to:

  • Confirm that the MCP server is working as expected.
  • Confirm that there are no obvious security issues.
  • Evaluate tool definition quality.

Our badge communicates server capabilities, safety, and installation instructions.

Card Badge

mcp-image-tools MCP server

Copy to your README.md:

Score Badge

mcp-image-tools MCP server

Copy to your README.md:

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/rog0x/mcp-image-tools'

If you have feedback or need assistance with the MCP directory API, please join our Discord server