Skip to main content
Glama

ShareCut QR & Short Links

Change where a link points

update_link

Re-point an existing short link at a new destination, or change its title, description or UTM parameters. This is what makes a printed QR code reusable: the code encodes the short link, so changing the destination redirects every copy already printed, shared or stuck on a wall, and the click history is kept. The new destination is screened with Google Safe Browsing. The short code itself never changes here, because changing it would break every copy already out there. Requires a ShareCut API key (Business plan).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoThe new http(s) destination. Short links only — a menu or link-in-bio page has no single destination.
utmNoUTM parameters appended at redirect time. Pass an empty object to switch UTM tracking off.
linkYesThe link, given either as its short code (the part after sharecut.site/) or as the id returned when it was created. A full ShareCut URL is accepted too.
titleNoNew label for the owner dashboard.
descriptionNoNew description.

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the full burden, and it discloses meaningful behavior: changing the destination redirects all existing printed copies, click history is preserved, new destinations are screened with Google Safe Browsing, and the short code is immutable in this operation. It leaves minor gaps around response/error behavior, but the core side effects and constraints are well covered.

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 front-loaded with the main action, and every sentence earns its place: operation, real-world implication, safety screening, immutability constraint, and authentication requirement. It is detailed without being wordy or redundant.

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 mutating tool with no annotations and no output schema, the description is unusually complete: it explains side effects, constraints, screening behavior, and the required plan. It does not mention the response shape or failure cases, but an agent has enough context to select and invoke the tool 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?

Schema coverage is 100%, so the schema already documents every parameter. The description adds only high-level framing—such as 'new destination' for url and UTM switchability—and does not materially expand on the schema's own descriptions. This matches the baseline for fully covered schemas.

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 opens with a specific verb ('Re-point... or change') and a named resource ('existing short link'), and enumerates the mutable fields: destination, title, description, and UTM parameters. It also clarifies what the tool does not do (changing the short code), which distinguishes it from sibling operations. The title reinforces the resource without being relied upon.

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 a concrete use case—repurposing printed QR codes—and states the Business-plan API key prerequisite. It does not explicitly name an alternative tool for changing the short code or creating a new link, so it stops short of a full when-to-use/when-not-to-use guide. The context is clear, but exclusions are only implied.

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.2/5.0
Disambiguation4/5

Most tools have clearly distinct purposes with strong descriptions, but three tools (create_qr, shorten_url, get_link_qr) can all produce a QR code, which could cause misselection without careful reading. The public-versus-account split and singular-versus-bulk variants are otherwise well separated.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: check_, create_, delete_, expand_, get_, list_, shorten_, update_. Composite names like get_link_analytics and shorten_urls_bulk extend the pattern predictably without mixing conventions.

Tool Count5/5

With 12 tools, the server is well-scoped for a QR and short-link management API. It includes public query tools, full CRUD for links, bulk creation, QR retrieval, analytics, and account status, with no unnecessary duplication.

Completeness4/5

The core link lifecycle is covered: create, read, list, update, delete, plus QR generation, analytics, and account info. Minor gaps exist around non-link resources like link-in-bio pages or restaurant menus that are only referenced by list_links, and there is no API to edit QR artwork directly, but these are peripheral to the stated purpose.