Skip to main content
Glama

get_daily_log

Retrieve the daily log for a specific date (YYYY-MM-DD) or today by default to review tasks and progress.

Instructions

Get daily log for a specific date (YYYY-MM-DD). Defaults to today.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate in YYYY-MM-DD formattoday

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3.4/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It discloses the default-to-today behavior, but says nothing about the read-only nature, what the log contains, or its format. For a simple getter this is minimal but not misleading.

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 that states the resource, the argument, and the default with no wasted words.

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

Completeness4/5

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

For a single-parameter read tool with no output schema and no nested structure, the description is largely sufficient: it covers the resource, the argument format, and the default. It stops short of describing what a daily log returns, which is minor given the tool's simplicity.

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 description coverage is 100%, and the schema already documents the date format and the 'today' default. The description restates the YYYY-MM-DD format and the default rather than adding meaning, so the baseline 3 applies.

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?

States a specific verb (Get) and resource (daily log) scoped to a single date, which an agent can distinguish from the plural 'list_daily_logs' sibling. However, it never explicitly names or contrasts with those siblings (list_daily_logs, get_daily_summary), so differentiation relies on the agent's inference.

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?

The 'Defaults to today' phrasing hints that calling without a date is valid, but there is no explicit when-to-use guidance, no mention of when to prefer get_daily_log over list_daily_logs or get_daily_summary, and no prerequisites stated.

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