Skip to main content
Glama
Miyamura80

agent-prompt-capture

by Miyamura80

activity_timeline

See when work happened over time, grouped by hour or day. Use since/until to inspect prompt counts, active minutes, and projects or sources touched per interval.

Instructions

The shape of the user's activity over time: contiguous buckets, each with start (UTC), local_start, prompt_count, active_minutes and the projects/sources touched. Use it to show when work happened rather than how much. bucket must be one of: hour, day - buckets are aligned to local hours/midnights. since/until accept an ISO 8601 timestamp ('2026-09-19T14:00:00Z'), a bare date ('2026-09-19'), the word 'now', or a relative duration meaning that long ago: '30m', '24h', '7d', '2w', '3mo', '1y'. Omit until for 'up to now'. Defaults: since='24h', until=now. Very wide windows are truncated (the response then carries truncated: true); widen bucket instead of the window.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
sinceNo24h
untilNo
bucketNohour

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.8/5.0
Behavior5/5

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

With no annotations, the description carries the full burden and does so well. It discloses local-hour/midnight alignment, accepted time formats, defaults, and the truncation behavior signaled by `truncated: true`. These are behavioral details an agent could not infer from the schema alone.

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 dense but well-organized, front-loading the output shape and purpose before moving to parameters and edge cases. Every clause adds useful information with no 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 moderately complex query tool, the description covers output fields, timezone alignment, input formats, defaults, and truncation behavior. Combined with the existing output schema, an agent has everything needed to select and invoke this tool correctly.

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

Parameters5/5

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

Schema description coverage is 0%, but the description fully compensates by explaining all three parameters: `bucket` options and alignment, `since`/`until` accepted formats and defaults, and the meaning of omitting `until`. Each parameter gets more meaning than its bare schema representation provides.

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 clearly defines the tool's resource as 'the user's activity over time' and its purpose as showing 'when work happened rather than how much.' This distinguishes it from sibling tools like prompt_stats and time_summary even without naming them.

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?

It explicitly guides when to use the tool: to show the shape of activity rather than volume. It also gives actionable advice on handling wide windows by widening the bucket instead of the window. It doesn't name sibling alternatives explicitly, but the when/not distinction is clear enough.

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