Skip to main content
Glama

Translate To Iso

translate_to_iso
Read-onlyIdempotent

Parse custom-format date to ISO.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateYes
formatYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "date": "15/01/2024",
      +    "format": "dd/MM/yyyy"
      +  },
      +  {
      +    "date": "January 15, 2024 2:30 PM",
      +    "format": "MMMM dd, yyyy h:mm a"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "description": "Parsed datetime in ISO format",
      +  "type": "object"
      +}
  2. First observed

TDQS

A3.5/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the tool's safety profile is clear. The description adds minimal context beyond 'parse,' which aligns with the annotations. No contradiction.

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 extremely concise at one sentence, front-loaded with the verb 'Parse,' and contains no superfluous information. Every word earns its place.

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

Completeness2/5

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

Despite having an output schema that may define return values, the description is too brief for a tool with many date/time siblings. It lacks usage context, supported format patterns, or error behavior, which is incomplete given low schema coverage.

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%, and the description does not elaborate on the 'date' and 'format' parameters. While examples exist in the input schema, the description itself adds no parameter meaning, leaving the agent to rely on external context.

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 'Parse custom-format date to ISO' clearly states the verb (parse) and resource (date), and differentiates from sibling tools like convert_time_zone and current_time by focusing on format conversion rather than time zone or current time.

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 does not provide explicit when-to-use or when-not-to-use guidance. While the purpose implicitly suggests usage for date format conversion, it does not mention alternatives or exclusions, leaving the agent to infer applicability.

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.

TDQS

B3.2/5.0
Disambiguation2/5

Several tools overlap heavily: ask_pipeworx, ask_pipeworx_beta, ask_pipeworx_grounded, and deep_research all answer natural-language data questions, and ask_pipeworx_beta is explicitly identical to ask_pipeworx right now. The current_time* variants and multiple Polymarket scanners also create real selection ambiguity, though the memory and subscription tools are clearly distinct.

Naming Consistency3/5

Names are mostly lowercase snake_case and readable, but there is no consistent verb_noun pattern: some are imperative (ask_pipeworx, compare_entities, generate_llms_txt) while others are object-first (entity_profile, recent_changes, pipeworx_trending). Subfamilies like current_time* and polymarket_* are internally consistent, but the overall set follows no predictable convention.

Tool Count2/5

Forty tools is far too many for a server named Timeapi Io; only about nine tools actually relate to time zones and current time. The rest form a sprawling Pipeworx research, prediction-market, memory, and subscription platform, making this a mega-bundle rather than a well-scoped toolset.

Completeness3/5

The time-related surface covers current time, zone conversion, zone metadata, and ISO parsing, but lacks common date math or general formatting operations. The Pipeworx side is quite complete for research and fact-checking, but the mixed domain makes coverage uneven and hard to reason about as a single coherent service.