Skip to main content
Glama
agentspan-ai

MCP Test Server

by agentspan-ai

datetime_week_number

Returns the ISO week number for a given date, helping you schedule, report, or group data by calendar week.

Instructions

Return the ISO week number for the given date.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
date_stringYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.4

TDQS

C2.9/5.0
Behavior2/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 burden, yet it discloses nothing beyond the basic intent. It does not say whether the result is locale-independent, what happens with an invalid date, or how ISO week boundary rules (e.g. week 53) are handled.

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 front-loaded sentence with zero filler. Every word earns its place.

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?

The output schema covers the return value, so the description need not explain results. For a one-parameter deterministic tool it is nearly adequate, but the missing input-format detail leaves a real gap for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate for the undocumented date_string parameter, but it only refers vaguely to 'the given date'. The expected date format (ISO 8601, epoch, free-text) is left entirely unspecified in both the schema and the description.

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?

The description states a specific verb and resource ('Return the ISO week number for the given date'), which is precise enough to distinguish it from siblings like datetime_day_of_week or datetime_parse. It does not explicitly name the alternatives, so it stops short of a 5, but 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.

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus datetime_day_of_week, datetime_is_leap_year, or the other datetime siblings, nor any prerequisites. The agent is left to infer usage entirely.

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