Skip to main content
Glama

Capture an item

capture

Save any item—note, link, email, meeting line—and have it automatically classified, filed to the right project, and checked for duplicates. Your text stays verbatim.

Instructions

Save something the user wants kept: a note, a link, an email, a line from a meeting, anything. Call it once per distinct item; paste a transcript one item at a time rather than all at once. It decides for itself what kind of thing the item is, which of the user's projects it belongs to, whether it needs attention, and whether they already have it, then files it. The text is stored exactly as given and never rewritten. You do not need to classify anything yourself, and you should not ask the user which project it belongs to.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
textYesthe item, verbatim; it is stored exactly as given
sourceNowhere it came from: note, url, email, meeting, voice. Defaults to note

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses that capture auto-classifies, auto-assigns projects, checks for existing duplicates, and files the item, and that text is stored verbatim and never rewritten. It stops short of explaining what happens on duplicate detection or where the item is filed, but these are not essential for invocation.

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 definition is well organized: purpose, batching rule, autonomous behavior, and agent instructions in four sentences. It is efficient, though 'call it once per distinct item' and 'paste a transcript one item at a time' are slightly redundant.

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 two-string-parameter tool with no annotations or output schema, the description is unusually complete: it specifies what to send, how often, what the tool decides, and what the agent should not do. The only minor gap is the absence of any return-value or confirmation behavior, but that is not needed to invoke the tool correctly.

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

Parameters4/5

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

Schema coverage is 100% and already documents text and source. The description adds a useful constraint not in the schema: the text parameter must carry one distinct item at a time, not a batch. The verbatim/stored-exactly point repeats the schema, but the batching rule is genuine added meaning.

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 uses a specific verb and resource ('Save something the user wants kept: a note, a link, an email...') and clarifies that capture is the catch-all intake tool. It also distinguishes itself from siblings by stating it decides project, attention, and duplicates itself, so an agent won't confuse it with add_project or mark_done.

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 gives concrete usage rules: call once per distinct item, paste a transcript one item at a time, and do not classify or ask which project. It does not explicitly name sibling tools as alternatives, but the 'decides for itself' statement effectively routes the agent away from add_project and mark_done.

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

Deploy Server

Other Tools