Skip to main content
Glama

get_document_template

Read-only

Retrieve a specific document template by ID from Deel to access its details for HR, payroll, or compliance workflows.

Instructions

Get a specific document template by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
template_idYesThe document template ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior2/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered by structured data. The description adds nothing beyond that restatement — no note on error behavior for an unknown ID, no auth/permission requirements, and no indication of what a template object contains.

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?

A single sentence with zero filler, front-loading the verb and resource. Nothing could be removed without losing meaning.

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

Completeness4/5

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

For a low-complexity, single-parameter read tool with 100% schema coverage and readOnly annotations, the description is nearly sufficient. With no output schema, it could briefly say what a template returns, but that gap is minor at this complexity level.

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% and the single parameter is fully documented in the schema, so the baseline is 3. 'By ID' merely echoes the schema's 'The document template ID' without adding format or sourcing guidance (e.g., where the ID comes from).

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 ('Get') and resource ('document template') plus the lookup key ('by ID'), which clearly separates it from list_document_templates. It does not name the sibling explicitly, but the singular/plural distinction makes the scope unambiguous.

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?

Usage is only implied: the agent can infer this is for retrieving one known template rather than enumerating them. There is no explicit when-to-use, no statement of prerequisites, and no reference to list_document_templates as the alternative for discovery.

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