Skip to main content
Glama

x402-is-today

Is Today: Check whether a given date is today. Provide date or value; returns true if it matches the current calendar day.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate to process
valueNoValue to process

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed2 schema fields changed
    • addedInput schema / properties / date
      Added value: +{
      +  "description": "Date to process",
      +  "type": "string"
      +}
    • addedInput schema / properties / value
      Added value: +{
      +  "description": "Value to process",
      +  "type": "string"
      +}
  2. First observed

TDQS

B3.2/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It does disclose the return semantics ('returns true if it matches the current calendar day'), which is useful. However, for a 'today' check the timezone basis of 'current calendar day' is critical and entirely unaddressed, leaving a meaningful behavioral gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two short sentences with the purpose front-loaded and no wasted verbiage. Slightly terse for a tool whose edge cases (timezone, formats) matter, but structurally clean.

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 simple boolean predicate with no output schema, the description is mostly sufficient: it says what it returns. It falls short on the ambiguities an agent must resolve before calling it, namely timezone handling and the meaning of the vaguely named 'value' parameter.

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 coverage is 100%, so baseline 3 applies. The description adds one piece of information the schema does not: that date and value are alternatives ('provide date or value'), even though both are technically optional in the schema. It still gives no accepted formats for either parameter.

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 — checking whether a given date is today — which is unambiguous. It does not differentiate itself from close siblings such as x402-is-same-day or x402-is-past, so the agent must infer the difference, but the core purpose is clear.

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 rather than x402-is-same-day, x402-is-future, or x402-is-date-valid. The 'Provide date or value' clause hints at input choice but does not state conditions or alternatives.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources