tag_contact
Use to add CRM tags to the verified customer for booking workflow tracking.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| tags | Yes | ||
| session_token | Yes |
Use to add CRM tags to the verified customer for booking workflow tracking.
| Name | Required | Description | Default |
|---|---|---|---|
| tags | Yes | ||
| session_token | Yes |
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden, but it only states the action without disclosing side effects (e.g., whether tags are appended or replaced, any prerequisites beyond 'verified', or error behavior). This is a significant gap for a write operation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, short sentence that is front-loaded with the action. Every word serves a purpose, and it avoids unnecessary detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple two-parameter tool with no output schema and no annotations, the description covers only the basic action. Missing details include return value, tag replacement behavior, and any authentication prerequisites beyond the session token. The description is too minimal to be fully self-contained.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 0%, and the description does not explain the parameters ('tags', 'session_token') or their formats beyond what the schema already provides. The description adds no value to parameter understanding, failing to compensate for the lack of schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('add') and resource ('CRM tags to the verified customer'), clearly distinguishing it from sibling tools like 'update_contact_note' or 'create_booking_request'. The purpose is unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides clear context ('for booking workflow tracking') suggesting it should be used during the booking flow after the customer is verified. No explicit exclusions or alternatives are given, but the context is sufficient for selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Some tools overlap in purpose, such as check_availability vs get_customer_availability and the various verification entry points. Descriptions clarify the context of each, but an agent could still misselect without careful reading.
All tools follow a consistent verb_noun pattern with snake_case, e.g., check_availability, create_booking_request, get_booking_status. This makes the naming predictable and easy to navigate.
With 20 tools, the server is on the heavier side but the scope is broad, covering booking, customer verification, payments, and provider matching. The count feels slightly high but each tool serves a distinct step in the workflow.
The tool surface covers the full booking lifecycle from availability and quote to payment and final creation. Notable gaps include lack of update or cancel booking operations, but the core flow is well covered.