Skip to main content
Glama

List Card External Links

kaiten_list_card_external_links
Read-onlyIdempotent

List external links on a Kaiten card (Jira, GitHub PRs, design docs) without editing its description. Supply a cardId to return URLs, descriptions, and timestamps.

Instructions

List external links attached to a card. External links are URLs (Jira issues, GitHub PRs, design docs, etc.) that live in their own UI section on the card — separate from the card description, so attaching one does not pollute the description text. Returns id, url, description plus timestamps. Empty array if the card has no external links. cardId from kaiten_get_card or kaiten_search_cards.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
cardIdYesCard ID (from kaiten_search_cards or kaiten_get_card)
verbosityNoDetail: raw|min(default)|normal|maxmin

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and non-destructive behavior, so the description's additional disclosure is useful but not critical. It adds value by stating the return fields (id, url, description, timestamps) and the empty-array behavior when no links exist.

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 compact and front-loaded with the core purpose. Every sentence earns its place: what it lists, why external links are distinct, what it returns, and how to obtain cardId.

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?

For a simple read-only listing tool with two well-documented parameters, the description is complete. It covers the return payload, empty result behavior, and parameter provenance, while annotations cover safety and idempotency.

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 description coverage is 100%, so the schema fully documents both cardId and verbosity. The description only restates the cardId source already present in the schema and does not add new parameter-level meaning beyond that baseline.

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 tool lists external links attached to a card, with a specific verb and resource. It also distinguishes external links from card description content, and the context makes it easy to separate this from sibling tools like kaiten_add_card_external_link or kaiten_update_card_external_link.

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 explains what external links are and where they live, which clarifies why this tool is appropriate for retrieving them rather than reading the description. It also tells the agent where cardId comes from, though it does not explicitly enumerate alternatives or exclusion conditions.

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

Deploy Server

Other Tools