Skip to main content
Glama

find_related

Read-onlyIdempotent

Find semantically related images using AI embedding similarity. Returns images with similar meaning/topic.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesSource image UUID
limitNoMax results (1-20, default 10)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
countYesTotal number of matching images.
imagesYesSemantically related images.
citations_combinedNoCombined attribution for all images in this response, in three formats.

TDQS

A4/5.0
Behavior4/5

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

Annotations already provide readOnlyHint, idempotentHint, openWorldHint, destructiveHint=false. The description adds the mechanism of AI embedding similarity, explaining the semantic nature beyond annotations. No contradictions.

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, each providing essential information: purpose and result. No wasted words, front-loaded with the key action and method.

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?

The description covers purpose and mechanism well. With an output schema present, it is not required to describe return values. It could mention sibling tools, but overall it is complete enough for a search tool.

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?

Input schema has 100% description coverage for both parameters (id and limit). The description adds no additional meaning beyond what the schema provides, so 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?

Clearly states verb 'Find', resource 'semantically related images', and method 'using AI embedding similarity'. This distinguishes it from siblings like find_similar (likely visual similarity) and reverse_image_search (exact match).

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 semantic similarity but does not explicitly state when to use this vs alternatives like find_similar or reverse_image_search. No when-not or alternative guidance is provided.

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

A4.1/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose, from browsing by category/tag to semantic search, visual similarity, OCR search, image generation, and citation. No two tools overlap in functionality.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (e.g., browse_images, get_image, search_images), with minor exceptions like 'popular_tags' still fitting the pattern. The naming is predictable and intuitive.

Tool Count4/5

20 tools is at the higher end of the ideal range but remains well-scoped for the platform's breadth of features, including browsing, searching, generating, and submitting images.

Completeness5/5

The tool surface covers all major operations for an image database: discovery (browse, search, similar), retrieval (get), submission, generation, citation, and community features (leaderboards, tags, user profiles). No obvious gaps for the stated domain.

Resources