Skip to main content
Glama

tascan_register_tag

Register a physical NFC tag to link it to a project, task list, or task. When tapped, TaScan routes users to the linked resource.

Instructions

Register a physical NFC tag to a project, task list, or specific task. When someone taps the tag, TaScan routes them to the linked resource. Tags use NTAG215 chips and are programmed with NFC Tools Pro.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idNoTask ID (required for task targets)
tag_nameYesFriendly name (e.g., "Ballroom A Door", "Breaker Panel 3")
project_idNoProject ID
target_typeYesWhat this tag points to
task_list_idNoTask list ID (required for task_list/task targets)
tag_hardware_idYesNFC tag hardware serial number (e.g., "04:CB:6C:51:CE:2A:81")
location_descriptionNoPhysical location of the tag

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv3.12.0

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already indicate this is a non-read-only, non-destructive, non-idempotent write operation. The description adds useful behavioral context: the routing effect when tapped and the hardware chip requirement (NTAG215, NFC Tools Pro). However, it does not disclose what happens on duplicate registration, validation checks, or whether the operation is reversible.

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 extremely concise at two sentences. The first sentence contains the core purpose ('register a physical NFC tag to a project, task list, or specific task'), and the second adds value by explaining the tapping behavior and hardware requirements. There is no unnecessary information.

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

Completeness2/5

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

For a tool with 7 parameters and no output schema, the description lacks important context: it does not explain what the tool returns (e.g., success status, created registration ID), how to obtain the tag_hardware_id, or whether duplicate hardware IDs are handled. The schema descriptions cover individual parameters, but the overall workflow and error conditions are missing.

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?

The input schema already has 100% description coverage, with clear parameter descriptions for all 7 properties. The tool description does not provide additional meaning for any specific parameter beyond what the schema already contains, so it meets the baseline for a high-coverage schema.

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: 'Register a physical NFC tag to a project, task list, or specific task.' It also explains the resulting behavior ('When someone taps the tag, TaScan routes them to the linked resource') and mentions hardware specifics. This distinguishes it from sibling tools like tascan_list_tags.

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?

The description provides no explicit guidance on when to use this tool versus alternatives, nor does it mention prerequisites or exclusions. The only implicit context is that it is for physical NFC tag registration, but no differentiation from other Tag-related tools (e.g., no 'Use this for new tag registrations only' or 'Do not use if the tag is already registered').

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