Skip to main content
Glama
soil-dev

capsulemcp

by soil-dev

update_entry

Update an existing timeline entry by ID to change its content or subject, preserving other fields. Optionally remove attachments.

Instructions

Edit an existing timeline entry — typically a note. Provide the entry id plus the fields you want to change (content, subject). Only the fields you supply are modified; other fields keep their current values. Cannot change the entry's type. Use this to correct or extend a note added previously.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoEntry ID to update
contentNoNew body text for the entry. For notes, this is the markdown content; for emails, the body. Provide only if you want to change it.
subjectNoNew subject line. Mostly meaningful on email-type entries; on plain notes Capsule accepts the call (HTTP 200) but **does not store the subject and does not advance `updatedAt`** — a true no-op for inapplicable fields. `entryAt` (when the note was authored) is preserved across edits; `updatedAt` advances only when an applicable field actually changes. To sort/filter by 'when did this happen', use `entryAt`; for 'last touched', use `updatedAt`.
removeAttachmentIdsNoAttachment ids to detach from this entry (ids from the entry's attachments array; wire shape {id, _delete: true}, verified live — removal returns the entry with the attachment gone). Other attachments are untouched. Capsule rejects removing the LAST attachment from an entry that has no content. To ADD an attachment to an existing entry, use upload_attachment with entryId.
Install Server

TDQS

A4.2/5.0
Behavior4/5

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

With only readOnlyHint=false and destructiveHint=false, the description adds meaningful behavioral context: partial updates only, unchanged fields preserved, and entry type immutable. The schema adds even more behavioral nuance (subject no-op on notes, updatedAt semantics, last-attachment rejection), but that lives in structured fields rather than the main description.

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?

Three tight sentences: the action and resource, the update semantics, and the intended use. No filler, and the most important constraints are front-loaded.

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 mutation tool with no output schema, the definition plus schema conveys the required id, updatable fields, partial-update behavior, and attachment-removal constraints. It does not describe the return value or auth scopes, but the parameter and behavior coverage is strong enough for an agent to call it 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 description coverage is 100%, so the baseline is 3 and the schema already documents id, content, subject, and removeAttachmentIds well. The tool description lists content/subject as updatable fields and states the partial-update rule, but it adds little over the already-rich parameter descriptions.

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 operation (edit an existing timeline entry) with the affected resource and scope (fields content, subject, attachment removals). It distinguishes itself from add_note/create/delete siblings by framing it as correcting or extending a previously added note. The 'cannot change the entry's type' note removes ambiguity about type-changing behavior.

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?

Gives a clear use context: 'Use this to correct or extend a note added previously.' It states limitations (cannot change type) and, via the schema's removeAttachmentIds note, points to upload_attachment for adding attachments. There are no explicit exclusions naming alternatives like add_note or delete_entry, so it stops short of a fully explicit when-not guidance.

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

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/soil-dev/capsulemcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server