Skip to main content
Glama

이미지 유사도 비교

image_similarity
Read-only

Compare a base image with another image and return a similarity score. 기준 이미지와 비교 대상 이미지의 유사도를 분석해 점수를 반환합니다. 원본 검증, 중복 이미지 탐지 등에 사용합니다. [호출당 10포인트]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
image_urlYes다운로드 가능한 https URL (허용 형식: image/jpeg, image/png, image/webp, image/bmp) (최대 50MB)
compare_image_urlYes다운로드 가능한 https URL (허용 형식: image/jpeg, image/png, image/webp, image/bmp) (최대 50MB)

TDQS

A3.9/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, so the description doesn't need to state non-mutating behavior. The description adds a practical detail — the per-call cost of 10 points — and mentions use cases, which is helpful context beyond the annotations. It does not describe the nature of the similarity score (e.g., range, interpretation), but this is not a conflict. Given annotations cover the safety profile and the description adds a bit of operational context, a 3 is fair.

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 concise — three short sentences plus a cost note in brackets. The primary action and purpose are front-loaded, and every sentence adds value: what it does, use cases, and cost. There is no filler or redundancy.

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 two-parameter tool with no output schema, the description is mostly complete: it states inputs, outputs (a score), and use cases. The significant gap is the lack of any indication about the score's format or scale (e.g., 0–1, percentage), which an agent would need to interpret results correctly. Since the description carries the responsibility for explaining return values when no output schema exists, this omission makes it incomplete enough for a 3.

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% — both parameters (image_url, compare_image_url) are fully described with format restrictions and size limits. The description does not add semantic meaning beyond the schema; it merely restates roles (base vs. comparison) that are already evident from parameter names and the schema descriptions. With full schema coverage, the baseline of 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 clearly states the verb 'Compare' with two distinct resources (base image and comparison image) and the outcome (similarity score). It further specifies use cases (origin verification, duplicate detection), which distinguishes it from all sibling tools that handle video, face, NSFW, audio, and text — none relate to image similarity. This is a specific and unambiguous definition.

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?

It provides clear usage context by listing typical scenarios ('원본 검증, 중복 이미지 탐지 등' – origin verification, duplicate detection), which guides an agent on when to invoke it. However, it does not explicitly state when NOT to use it or mention alternative tools, though no sibling tool is directly comparable. Since context is given but exclusions are absent, a 4 is appropriate.

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
Disambiguation5/5

Each tool has a clearly distinct purpose: video thumbnail extraction, face detection, image similarity, NSFW detection, video-to-audio conversion, and word cloud generation. There is no overlap between any two tools, so agents can easily select the correct one.

Naming Consistency3/5

All tool names use snake_case, but the pattern is mixed: most are noun-based (face_detection, image_similarity, nsfw_detection, word_cloud) while extract_video_thumbnail starts with a verb and video_to_mp3 is a conversion style. This inconsistency makes the naming slightly less predictable.

Tool Count5/5

With 6 tools, the count is well within the typical 3-15 range and feels well-scoped for a media processing toolkit. Each tool adds a distinct capability without being redundant or overwhelming.

Completeness3/5

The server covers a variety of media operations (video, image, audio, text) but lacks common vision tasks like OCR, object detection, or image classification that one might expect from a 'Vision' server. The set feels like a collection of standalone utilities rather than a complete domain coverage, though no critical gaps cause agents to fail.