Skip to main content
Glama

Dump database

dump_database
Read-only

Retrieve the current state of your OmniFocus database, including tasks, projects, and folders, with options to hide completed items or collapse recurring duplicates for a cleaner view.

Instructions

Gets the current state of your OmniFocus database

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
hideCompletedNoSet to false to show completed and dropped tasks (default: true). Completed/dropped tasks are capped at the most recent 50 per project; the report notes how many were omitted.
hideRecurringDuplicatesNoWhen completed tasks are shown (hideCompleted: false), collapse repeated completed instances of the same recurring task — same name, same project, has a repetition rule — into the most recent instance, marked '(×N completed instances)'. Has no effect when hideCompleted is true (default: true)

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataNo
metaNo
toolYes
successYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.7.0

TDQS

A3.7/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true, so the safety profile is covered. The description adds value by noting the database state is 'current' and the parameter descriptions disclose important behavioral details: completed/dropped tasks are capped at 50 per project and the report notes omissions. This goes beyond 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.

Conciseness4/5

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

The description is a single concise sentence that front-loads the core purpose. The parameter descriptions carry the detailed behavioral information, which is appropriate placement. 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?

The tool has an output schema, so return values are documented elsewhere. The description plus rich parameter descriptions cover the key behaviors (completion cap, recurring duplicate collapsing). It's slightly incomplete in not stating the overall scope of what 'current state' includes (e.g., projects, tasks, folders, tags), but the output schema likely covers that.

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%, so the schema already fully documents both parameters. The description itself doesn't add parameter-level meaning beyond what the schema provides, but the schema's parameter descriptions are rich (explaining defaults, caps, and the recurring-duplicate collapse behavior). Baseline 3 is appropriate.

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?

The description 'Gets the current state of your OmniFocus database' clearly identifies the tool as a read-only database dump operation. It distinguishes it from sibling tools like get_flagged_tasks or get_inbox_tasks by its broad scope, though it doesn't explicitly name a sibling alternative.

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

Usage Guidelines3/5

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

The description implies this is the tool to use when you need the full current state of the database, as opposed to specific filtered views. However, it doesn't explicitly state when to use this over alternatives like filter_tasks or search_items, nor does it mention any exclusions or prerequisites.

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