Skip to main content
Glama

nevent_list_short_urls

Read-only

List all short URLs for the current tenant with their tracking metrics (click count, last clicked). Use to discover existing campaign links or to audit active tracking URLs. Returns items (array of ShortUrlDTO), total, page, pageSize, totalPages. Key fields per item: id (use with nevent_get_short_url_metrics or nevent_get_short_url_clicks), shortCode (use with nevent_get_short_url_campaign_metrics or nevent_list_short_url_user_links), shortUrl, longUrl, title, tags, clickCount, isActive, isParent. Filter by isActive=true for active links only. Use search to filter by title or URL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNoZero-based page number for pagination. Default: 0 (first page).
searchNoFree-text search across short code, title, and target URL. E.g. "summer" to find links tagged or titled with that word.
isActiveNoFilter by active status. true = only active links, false = only inactive/expired links. Omit to return both.
pageSizeNoNumber of results per page. Default: 20. Max: 200.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.4/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds useful behavioral context: the tenant scope, the pagination envelope, the key item fields, and how IDs and shortCodes tie into related tools.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is fairly dense but not bloated; each sentence contributes either the core purpose, return shape, key fields, or filter behavior. It could be tightened slightly, but the structure is logical and front-loaded with the most important information.

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?

Because there is no output schema, the description correctly explains the return envelope (items, total, page, pageSize, totalPages) and highlights important item fields. It also provides cross-references to metrics and click-count tools, making it self-sufficient for an agent deciding how to call and use the result.

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?

The input schema already documents all four parameters with 100% coverage, so the baseline is 3. The description adds value by explaining that search filters by title or URL and that isActive=true isolates active links, which supplements the schema descriptions.

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 action ('List all short URLs'), the resource scope ('for the current tenant'), and the included tracking metrics. It also names concrete use cases and key fields that distinguish it from related URL tools like nevent_get_short_url or nevent_list_short_url_destinations.

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 explains when to use the tool: discovering existing campaign links or auditing active tracking URLs. It also gives practical filter guidance for isActive and search, though it does not explicitly state when to prefer a sibling tool instead.

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.