Skip to main content
Glama

list_share_links

Retrieve share links for a page with opens count and last-opened time to track link performance.

Instructions

Share links on a page with attributed opens and last-opened time. opens counts human page opens through that link; use_count is the raw max_uses counter, not a read metric. opens is null on a plan without viewer numbers.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
id_or_slugYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.8/5.0
Behavior4/5

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

With no annotations, the description carries the burden of behavioral disclosure, and it does so well by clarifying output semantics: opens counts human page opens, use_count is the raw max_uses counter and not a read metric, and opens is null on plans without viewer numbers. This prevents misinterpretation of returned data. It does not discuss permissions or side effects, but listing is a non-mutating operation and the key caveats are surfaced.

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 two sentences with no filler. The core statement is front-loaded, and the second sentence provides necessary caveats about opens and use_count. Every sentence earns its place.

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?

There is no output schema, so the description appropriately explains the key return field semantics and the null condition. It could be more complete by stating what share link fields are returned or mentioning pagination/ordering, but for a simple one-parameter list operation the essential information is present.

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 0%, so the description must compensate, and it adds only modest context by saying the share links are 'on a page.' This implies id_or_slug refers to a page, but the description does not explicitly explain the id_or_slug format or that it is required. For a single self-named parameter, this is adequate but not thorough.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the resource (share links on a page) and distinguishes the tool's focus by highlighting attributed opens and last-opened time. It lacks an explicit verb like 'lists' or 'returns,' though the tool name supplies that action. It does not explicitly differentiate from sibling tools, but the resource and metric focus are clear enough.

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 the tool should be used when you need share links with opens and last-opened metrics, but it does not explicitly state when to use it versus siblings like create_share_link, revoke_share_link, or set_expiry. There is no exclusion or alternative routing, so an agent must infer the usage context.

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