Skip to main content
Glama
iseletsk
by iseletsk

get-time-off-requests

Retrieve time-off requests by date range, employee, status, or action to review and manage approvals efficiently.

Instructions

Get time-off requests filtered by date range, employee, status, or action

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
endYesEnd date (YYYY-MM-DD)
startYesStart date (YYYY-MM-DD)
actionNoFilter by action: view, approve, deny, cancel
statusNoFilter by status: approved, denied, superceded, requested, canceled
employeeIdNoFilter by employee ID (numeric)

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full behavioral disclosure burden. It signals a read operation through 'Get' and lists filters, but it does not disclose return format, pagination, permissions, or behavior when filters conflict. This is minimal but not misleading.

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 a single sentence with the primary action and filter list front-loaded. It contains zero redundant words and is easily parsed at a glance.

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 5-parameter tool with 2 required parameters and no output schema, the description gives enough to initiate a call but omits the return shape and does not clarify that the date range is mandatory. It is adequate for a simple filtered list operation but not fully comprehensive.

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 every parameter is already documented in the schema. The description's phrase 'date range, employee, status, or action' restates the parameter set in prose but adds no new format, constraint, or relationship details beyond what the schema provides.

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 uses a specific verb ('Get') and resource ('time-off requests') and explicitly enumerates the filtering dimensions (date range, employee, status, action), making the tool's purpose unmistakable. No sibling tool retrieves time-off requests, so it is clearly distinct from create-time-off-request and estimate-time-off-balance.

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

Usage Guidelines3/5

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

The description implies this is the general-purpose retrieval tool for time-off requests, especially through the phrase 'filtered by date range, employee, status, or action.' However, it provides no explicit guidance on when to choose this tool over alternatives such as get-whos-out or estimate-time-off-balance, nor any exclusions.

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