Skip to main content
Glama
cuolm

meteo-swiss-mcp

by cuolm

current_date_and_time

Returns the current weekday, date, and time in a human-readable format. Use this to generate timestamps or verify the current date and time.

Instructions

        Get a human-readable string of the current time, weekday and date.

        Returns:
            str: A string in the format "Today is <weekday> <day>.<month>.<year> <hour>:<minute>:<second>"
        

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden and does a good job by stating that this is a read-only 'Get' operation and by specifying the exact return format. The only notable omission is timezone awareness, since 'current time' is not qualified as local or UTC.

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 brief, front-loaded with the core purpose, and every sentence adds useful information. The return format is specified without unnecessary filler.

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

Completeness5/5

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

For a zero-parameter read-only utility tool with an output schema and an explicitly documented return format, the description is fully sufficient. No additional usage context or edge-case guidance is necessary.

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

Parameters4/5

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

The tool has zero parameters, so there is nothing for the description to explain about arguments. The baseline of 4 applies, and the description appropriately focuses on the return value instead.

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 names the exact resource: a human-readable string of the current time, weekday, and date. It is immediately distinct from the weather-focused sibling tools.

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

Usage Guidelines4/5

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

The purpose is clear enough that an agent knows to use it whenever the current date/time is needed, and the sibling names make it obvious this is the only non-weather tool. It does not explicitly state exclusions or alternative conditions, but no meaningful alternatives exist here.

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