Skip to main content
Glama
Doist

Twist AI MCP Server

Official
by Doist

away

Idempotent

Retrieve, set, or clear your availability status in Twist for parental leave, vacation, sick leave, or other absences. Set start and end dates to keep your profile accurate.

Instructions

Manage the current user's away status. Supports getting, setting, and clearing away mode with types: parental, vacation, sickleave, other.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
fromNoStart date (YYYY-MM-DD). Only used when action is "set". Defaults to today.
typeNoThe away mode type. Required when action is "set".
untilNoEnd date (YYYY-MM-DD). Required when action is "set".
actionYesThe action to perform.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYes
actionYes
isAwayYes
awayModeNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changedv7.0.0
    • changedInput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
    • changedOutput schema / $schema
      Previous value: -"http://json-schema.org/draft-07/schema#"New value: +"https://json-schema.org/draft/2020-12/schema"
  2. First observedv5.5.1

TDQS

A4.1/5.0
Behavior3/5

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

The annotations already convey read-write, idempotent, and non-destructive behavior. The description adds the useful scope that the status belongs to the current user, but it does not disclose additional side effects, prerequisites, or edge cases such as exactly what happens when clearing.

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?

One concise, front-loaded sentence states the purpose and scope first, then the operations and types. There is no filler or redundant introduction.

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 low-complexity tool with full parameter schema coverage and an output schema, the description is complete enough. Action-specific requirements are covered by the schema, so the agent has what it needs to invoke the tool correctly.

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 already documents action, type, from, and until, including action-specific requirements. The description's type list repeats the schema enum and adds no new parameter-level meaning.

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 identifies the resource ('current user's away status') and the supported operations ('getting, setting, and clearing'), with the allowed types listed. No sibling tool covers away status, so it is readily distinguishable.

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 provides clear, immediate context: this is the tool for managing the current user's away status. It does not explicitly name alternatives or when-not-to-use cases, but none of the sibling tools addresses away status, so the guidance is sufficient.

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