Skip to main content
Glama

Random Comic

random_comic
Read-onlyIdempotent

Fetch a randomly selected XKCD comic from the full archive (skips #404). Returns comic number, title, image URL, alt text, publication date, and transcript.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
altYesAlt text for the comic image
imgYesURL to the comic image
urlYesURL to view the comic on xkcd.com
dateYesPublication date in YYYY-MM-DD format
linkYesURL link related to the comic, or null if not present
titleYesThe comic title
numberYesThe comic number
safe_titleYesThe comic title with special characters escaped
transcriptYesTranscript of the comic, or null if not available

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnly, openWorld, idempotent, and non-destructive traits. The description adds useful behavioral context: it randomly selects from the full archive and skips #404, which is not evident from annotations.

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

Conciseness4/5

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

The description is a single sentence that front-loads the core action. It lists return fields which are partially redundant with the output schema, but the length is still reasonable and no word is wasted.

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

Completeness5/5

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

For a simple no-parameter tool with rich annotations and an output schema, the description is sufficiently complete. It covers what the tool does, its scope, and a notable behavioral exception (skips #404).

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

Parameters4/5

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

There are zero parameters, and the schema coverage is 100%, so the baseline is 4. The description adds no parameter info, which is appropriate since there are none to explain.

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 action (fetch) and resource (randomly selected XKCD comic from the full archive), with a specific scope (skips #404). This distinguishes it from likely siblings like get_comic and get_latest by emphasizing randomness.

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 random comic retrieval and provides context (full archive, skips #404) but does not explicitly contrast with alternatives. No exclusions or when-not-to-use guidance is given, but the intent is clear.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation2/5

Many tools overlap heavily: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, deep_research, entity_profile, compare_entities, and validate_claim all serve data-lookup purposes with unclear boundaries. The three xkcd comic tools are distinct but are buried under 31 unrelated tools, making selection confusing.

Naming Consistency2/5

Tool names follow no consistent pattern: some use verb_first (get_comic, list_subscriptions), some are nouns (entity_profile, deep_research), some have prefixes (ask_pipeworx_*, polymarket_*), and others are vague (scan_dependency, generate_llms_txt). The mixing of styles across the set makes it hard to predict naming.

Tool Count2/5

With 34 tools and a server name of 'xkcd', the count is wildly disproportionate; only 3 tools relate to comics. Even as a general data-access server, 34 tools is heavy and many are meta-tools (discover_tools, suggest_questions) that add bulk.

Completeness3/5

For the actual Pipeworx data domain, the surface is fairly comprehensive: querying, grounded answers, research, entity profiles, comparisons, validation, subscriptions, and prediction-market analysis are covered. However, there are notable gaps like no fetch-by-URI tool and no xkcd search/list capability, making the set incomplete for its name and slightly incomplete for its inferred domain.