Skip to main content
Glama

Internal Link URLs

get_internal_link_url
Read-onlyIdempotent

Get canonical FINN URLs for a brand and its models — for building internal linking blocks on SEO pages. For each model returns three URLs that target DIFFERENT funnels: mdp_url (marketing/brand page), plp_subscribe_url (subscription product listing, /de-DE/subscribe/{brand}{model}), and plp_leasing_url (leasing product listing, /de-DE/leasing/{brand}{model}). Use plp_leasing_url when linking from a Leasing advisory, plp_subscribe_url when linking from subscription content. If model is omitted, returns all currently available models for the brand.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
brandYesBrand name (e.g. "Ford", "Mercedes-Benz", "BMW")
modelNoOptional model name (e.g. "Puma", "iX1"). If omitted, returns all available models for the brand.

TDQS

A4.7/5.0
Behavior5/5

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

The description goes well beyond the annotations by explaining the exact return structure (mdp_url, plp_subscribe_url, plp_leasing_url), the URL path patterns, the behavior when 'model' is omitted, and the notion of 'currently available models.' This adds substantial behavioral context not present in the read-only/idempotent/not-destructive hints.

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 well-structured and front-loaded with the core purpose. Each sentence adds necessary detail—URL types, usage guidance, and fallback behavior—with no redundancy or fluff.

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?

With no output schema, the description fully explains what the tool returns (three URL fields with patterns) and the effect of omitting model. It also provides context for when to use each URL type, making it complete for correct invocation.

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?

Schema coverage is 100% with clear descriptions for both brand and model. The description reinforces the optionality of model and provides concrete examples (e.g., 'Ford', 'Puma') and explains how parameters map to the returned URLs, adding value beyond the schema without introducing new constraints.

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 states a specific action ('Get canonical FINN URLs') and a clear resource ('for a brand and its models'), with the purpose of building internal linking blocks on SEO pages. This clearly distinguishes it from sibling tools like get_available_filters or search_vehicles, which handle different concerns.

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 explicit guidance on when to use each URL type ('Use plp_leasing_url when linking from a Leasing advisory, plp_subscribe_url when linking from subscription content') and mentions the intended use case. It does not explicitly exclude sibling tools, but no direct alternative exists for URL generation, so the context 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

A4.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: filter discovery, URL generation, pricing, vehicle details, and search. There is no overlap between search and details, and pricing is distinct from details by focusing on cost calculation.

Naming Consistency4/5

Four of five tools follow the 'get_' prefix pattern, while 'search_vehicles' breaks the pattern with a verb-noun structure. This is a minor deviation, but the overall naming is still predictable and readable.

Tool Count5/5

With only 5 tools, the server is well-scoped for its purpose of car subscription search and pricing. Each tool serves a necessary function and none feel redundant or superfluous.

Completeness5/5

The tool set covers the full workflow from discovering filters, searching vehicles, viewing details, calculating pricing, and generating internal link URLs. There are no obvious gaps for an informational and linking API, as checkout is handled via returned URLs.

Resources