Skip to main content
Glama
andreasd083

amazing-marvin-complete-mcp

get_today_items

Read-only

Retrieve open tasks and projects scheduled for today or earlier, including overdue items. Excludes deadline-only tasks; use get_due_items for those.

Instructions

Get open tasks/projects with day <= the date (default today in MARVIN_TIMEZONE, or the system's local timezone when unset) — i.e. also items scheduled earlier than the date, not only those on exactly that day. Tasks that only have a deadline are not included; fetch them with get_due_items. Observed 2026-09-11 with rollover enabled in the account; items with a clock time are untested. Note: today's recurring tasks may be missing if the Marvin app hasn't been running yet today (instances are generated by the client).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNoDate YYYY-MM-DD; returns everything open with day <= the date; omit for today (MARVIN_TIMEZONE, else the system timezone)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv1.6.0
    • changedInput schema / properties / date / description
      Previous value: -"Date YYYY-MM-DD; omit for today (server timezone)"New value: +"Date YYYY-MM-DD; returns everything open with day <= the date; omit for today (MARVIN_TIMEZONE, else the system timezone)"
  2. First observedv1.3.0

TDQS

A4.6/5.0
Behavior5/5

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

Annotations already declare readOnlyHint=true and openWorldHint=false, and the description adds substantial context beyond them: rollover inclusion semantics, timezone resolution order, the caveat that today's recurring tasks may be missing until the client generates them, and an explicit note that clock-time items are untested. This is unusually candid behavioral disclosure.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The core selection rule and the sibling exclusion are front-loaded, which is correct. The trailing provenance note ('Observed 2026-09-11...') and untested-clock-time remark are useful but slightly verbose, keeping it short of a 5.

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?

An output schema exists, so return values need not be described. Given that, the description covers the selection semantics, the alternative tool, timezone handling, and known staleness caveats — nothing an agent needs to invoke it correctly is missing.

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 coverage is 100% and the single parameter's schema description already states the YYYY-MM-DD format, the day <= date behavior, and the timezone fallback. The description largely restates this, so the baseline of 3 is appropriate.

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?

States a specific verb and resource (open tasks/projects) plus the exact selection rule (day <= date, including rollover items, not just items on that day). It also distinguishes itself from the sibling get_due_items, which handles deadline-only tasks.

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?

Explicitly names the alternative for the excluded case ('Tasks that only have a deadline are not included; fetch them with get_due_items'), giving a clear when/when-not routing rule. The default-timezone behavior of omitting the date is also spelled out.

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