Skip to main content
Glama
rcgeorge
by rcgeorge

append_to_active_note

Append Markdown content directly to the active Obsidian note, keeping your current editing context and avoiding manual copy-paste.

Instructions

Append content to the currently active/open note in Obsidian.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesMarkdown content to append

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, yet it omits everything beyond the basic action: whether a newline or separator is inserted, what happens if no note is active, whether the note is created when missing, and what the operation returns. For a mutation tool with zero annotation coverage this is a substantial gap.

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?

One front-loaded sentence with no filler or repetition. It is efficient, though the brevity edges into under-specification rather than optimal conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/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 annotations and no output schema, the description is too thin: it does not describe the return value, error behavior when no note is active, or how appended content is delimited. An agent can guess the basic call but not the edge cases.

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% and the single parameter is fully documented ('Markdown content to append'), so the schema does the heavy lifting. The description adds no format or placement detail beyond what the schema already provides, making 3 the correct baseline.

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 states a specific verb (append) and resource (content to the currently active/open note), and the qualifier 'active/open' distinguishes it from the sibling append_to_note, which presumably targets an explicitly named note. The distinction is implied rather than spelled out, keeping it below a 5.

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

Usage Guidelines2/5

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

It never says when to use this instead of append_to_note, patch_active_note, or update_active_note. The phrase 'currently active/open note' hints at the context, but no alternative is named and no prerequisite (e.g., a note must already be open) is stated.

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