Skip to main content
Glama

create_note

Create a note in Nextcloud Notes, optionally assigning a /-delimited category folder path that is created if missing; use the sanitised title and category from the response.

Instructions

Create a note. The category is a "/"-delimited folder path and is created automatically if missing. The server sanitises the title and category, so use the values in the response rather than the ones supplied.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNo
contentNo
categoryNoe.g. "work/clients"; omit for uncategorized.
favoriteNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior4/5

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

Annotations already declare write semantics (readOnlyHint=false, destructiveHint=false, idempotentHint=false, openWorldHint=true). The description adds real value beyond that: category folders are auto-created as a side effect, and the server sanitises title and category, so the agent must reconcile against the response. Auth, rate limits, and error behavior remain undisclosed, keeping it short of a 5.

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, front-loaded with the action and followed by the two behaviours an agent cannot infer. No filler or restated schema content.

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?

There is no output schema, but the description explicitly warns that the response values (sanitised title/category) supersede the supplied ones, which partially compensates. Missing pieces are minor: no indication of failure modes or of what the created note's identifier looks like.

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 only 25% (only category is documented in-schema), so the description must compensate. It does explain category as a "/"-delimited folder path that is auto-created, but content and favorite receive no semantic clarification in either place.

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?

States a specific verb and resource ("Create a note") and immediately clarifies how the category field behaves. It does not explicitly contrast with create-adjacent siblings like append_to_note or update_note, but the purpose itself is unambiguous.

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

Usage Guidelines3/5

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

Usage is implied by the verb and by the note that category folders are auto-created, but there is no statement of when to prefer this over append_to_note or update_note, and no prerequisites or exclusions are given.

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