Skip to main content
Glama

asana_get_tag

Retrieve detailed information about a specific Asana tag by its globally unique identifier, optionally including selected fields.

Instructions

Get detailed information about a specific tag

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tag_gidYesGlobally unique identifier for the tag
opt_fieldsNoComma-separated list of optional fields to include

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. 'Get' correctly implies a read-only operation, but the description discloses nothing about returned fields, permission requirements, or error behavior when the tag_gid is invalid.

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?

A single short sentence, front-loaded with the verb and resource. Efficient and waste-free, though it is arguably under-specified rather than optimally concise.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple two-parameter getter with no output schema, the description should at least hint at what 'detailed information' includes or how opt_fields affects the response. It is minimally viable but leaves return-shape context unstated.

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 both tag_gid and opt_fields are already documented in the schema. The description adds no extra syntax or format meaning beyond that, which is the baseline-3 case.

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?

States a specific verb+resource ('Get detailed information about a specific tag'), which is clear on its own. However, it does not distinguish itself from sibling retrieval tools like asana_get_tags_for_task or asana_get_tags_for_workspace, leaving the agent to infer the by-GID vs by-collection distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No when-to-use guidance, no mention of when to prefer this over the sibling tag-listing tools, and no prerequisites stated. The agent gets no routing help.

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