Skip to main content
Glama

Engram Obsidian Memory Sync

Create Note

create_note

Create a new note with automatic folder placement. If suggested_folder is omitted, the note is placed automatically. Never overwrites: fails if a note already exists at the resulting path.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesTitle for the new note
contentYesMarkdown content
vault_idNoTarget vault — its name (e.g. "Engram") or its UUID. REQUIRED when you own more than one vault — the server keeps no active-vault state between calls, so it must be passed on every vault-scoped call. Omit only if you have a single vault. Call list_vaults if a name does not resolve.
suggested_folderNoOnly set when user explicitly named a folder

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
pathYesWhere the note landed — the server picks the folder

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Annotations only provide generic flags (non-read-only, non-idempotent), so the description carries the behavioral burden and does so well. It discloses two important traits beyond the flags: automatic folder placement when suggested_folder is omitted, and hard failure on path collisions. This gives the agent actionable expectations about side effects and failure modes.

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 short sentences, each carrying unique information: the core action, the optional parameter branch, and the failure constraint. No filler, no restatement of parameter names or schema details.

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?

With an output schema present and parameter descriptions covering vault_id, the description covers the essential call-time decisions: whether to pass suggested_folder and what happens on a collision. The only minor gap is not detailing how automatic folder placement selects a folder, but this is not necessary for invoking 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%, so parameters are already well-documented. The description adds extra meaning by tying suggested_folder to the automatic placement behavior and explaining the collision failure mode, while vault_id's multi-vault requirement is captured in the schema itself. This exceeds the baseline without repeating schema text.

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 verb ('Create') and resource ('note') and immediately adds distinguishing behavior: automatic folder placement and never-overwrite semantics. This clearly separates it from siblings like write_note, append_to_note, and patch_note, which imply modification or replacement.

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?

The description gives clear context for when to use the tool: when creating a new note, and it explicitly states the conditional for suggested_folder. The 'Never overwrites: fails if a note already exists at the resulting path' clause also serves as a when-not indicator, though it does not name an alternative tool for overwriting.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.