Skip to main content
Glama
soil-dev

capsulemcp

by soil-dev

get_entry

Read-only

Fetch a timeline entry by numeric ID to retrieve the full payload—note body, email subject/body/from/to, or task fields. Use it when you have an ID from list calls and need complete content.

Instructions

Fetch a single timeline entry by its numeric id. Returns the full payload — for a note: the body text; for a captured email: subject, body, from/to, and timestamps; for a completed-task record: the original task fields. Useful when you have an entry id from one of the list_*_entries calls and want the full content. To modify the body or activity-type of an existing entry use update_entry; to delete one use delete_entry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
embedNoComma-separated embeds. Valid tokens: attachments, participants, party, project, opportunity, creator, activityType.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.3.0
    • addedInput schema / required
      Added value: +[
      +  "id"
      +]
  2. Changed1 schema field changedv2.2.0
    • changedInput schema / properties / embed / description
      Previous value: -"Comma-separated embeds. Valid tokens: attachments, participants."New value: +"Comma-separated embeds. Valid tokens: attachments, participants, party, project, opportunity, creator, activityType."
  3. Changed1 schema field changedv2.1.2
    • changedInput schema / properties / embed / description
      Previous value: -"Comma-separated embeds, e.g. 'attachments,participants'"New value: +"Comma-separated embeds. Valid tokens: attachments, participants."
  4. Addedv1.7.0
  5. Removedv1.6.2
  6. First observedv1.0.0

TDQS

A4.5/5.0
Behavior4/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is known. The description adds meaningful behavioral detail by specifying what kind of payload is returned depending on entry type, which goes beyond the annotations and helps the agent set expectations.

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 front-loaded with the core action, then gives return-value detail, usage context, and sibling alternatives, each sentence earning its place. The enumeration of payload types is relevant because there is no output schema to communicate this otherwise.

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?

Given no output schema, the description compensates by explaining return payload variations for different entry types. It also covers when to use the tool and which sibling to choose for mutations, making it complete for an agent to select and invoke correctly.

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 50%, so the description carries some burden. It does clarify that id is a numeric timeline-entry id and that ids come from list_*_entries calls, which adds context beyond the schema. However, the embed parameter is not mentioned in the description, and the id semantics are only lightly supplemented beyond its integer type.

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 starts with a specific verb and resource: 'Fetch a single timeline entry by its numeric id.' It clearly distinguishes itself from siblings by explaining that it returns full content for notes, emails, and completed tasks, and contrasts with update_entry and delete_entry.

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?

The description explicitly states when to use the tool: 'when you have an entry id from one of the list_*_entries calls and want the full content.' It also identifies alternatives and their use cases: use update_entry to modify, delete_entry to delete. This leaves no ambiguity about routing.

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