Skip to main content
Glama

AI SENSE Free Public Tools

Get current time

get_current_time
Read-onlyIdempotent

Get the true current date and time, as an ISO 8601 string and a Unix timestamp, for any timezone. Use this whenever the actual present moment matters - stamping a record, computing an age or a deadline, deciding whether something has expired - because a language model has no clock and will otherwise guess a date from its training data. No API key, no account and no sign up: call it directly. The timezone parameter accepts an IANA name or a fixed UTC offset and defaults to UTC.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
timezoneNoIANA timezone or UTC offset, such as Europe/Oslo or +02:00.UTC

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
datetimeYes
timezoneYes
timestampYes

TDQS

A4.7/5.0
Behavior5/5

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

Annotations already mark the tool as read-only and idempotent; the description adds valuable behavioral context on top: it is a true external-clock call, requires no API key or account, returns both ISO 8601 and Unix timestamp, and accepts IANA/offset timezones. It does not contradict the annotations.

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?

Every sentence earns its place: purpose/output, usage guidance, auth/directness, and parameter semantics are each covered in a compact four-sentence structure with no filler. The key action is front-loaded in the first sentence.

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 simple single-optional-parameter tool with an output schema and safe annotations, the description is complete: it covers what, when, why, auth, and parameter behavior. The output schema handles return-value details, so the description need not repeat them.

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?

The schema already fully documents the timezone parameter with a default and example formats at 100% coverage. The description paraphrases that same meaning ('IANA name or a fixed UTC offset and defaults to UTC'), adding little value beyond the schema.

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 opens with a specific verb and resource ('Get the true current date and time') and names the concrete return forms (ISO 8601 string and Unix timestamp). It also scopes the tool to any timezone, clearly distinguishing it from unrelated sibling tools such as generate_uuid.

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

Usage Guidelines5/5

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

It gives explicit when-to-use guidance ('whenever the actual present moment matters') with concrete examples like stamping records, computing ages/deadlines, and expiration checks. It also explains why an LLM should not guess the time, making the guidance actionable and unambiguous.

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

A4.4/5.0
Disambiguation4/5

Each tool is centered on a distinct resource or action, and the read_* tools clearly map to their create_* counterparts. The main source of ambiguity is create_agent_wake, which overlaps conceptually with create_human_approval and create_webhook_capture because it also involves webhooks and human form replies.

Naming Consistency5/5

Tool names consistently follow a verb_noun pattern in snake_case, with clear create_*/read_* pairs and standalone helpers like generate_uuid and get_current_time. No mixed casing or arbitrary verb styles appear.

Tool Count5/5

Ten tools is a well-scoped size for a general-purpose public utility server. Each tool covers a distinct need, and the collection feels intentionally curated rather than bloated or sparse.

Completeness4/5

The create/read pairs provide reasonable coverage for approvals, webhook capture, and temporary storage, plus useful standalone utilities. The noticeable gaps are missing cancellation, deletion, or status operations for agent wakes and temporary resources, but these do not severely cripple typical workflows.