Skip to main content
Glama

create_note

Create a note by providing a unique title and optional content, then receive its generated ID for later retrieval or updates.

Instructions

Create a new note and return it, including the generated id to use in later calls.

Titles must be unique case-insensitively; creating a note whose title already exists is an error, so if the user wants to change an existing note, use update_note.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYesShort, distinctive title. Must be unique.
contentNoBody of the note. May be empty.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesStable identifier for the note.
titleYesShort human-readable title.
contentYesFull note body.
created_atYesWhen the note was created (UTC, ISO 8601).
updated_atYesWhen the note was last modified (UTC, ISO 8601); equals `created_at` for a note that has never been updated.
Behavior4/5

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

Beyond the annotations (readOnlyHint=false, destructiveHint=false), the description reveals the result shape (returns note with generated id), a critical error condition (case-insensitive title collision), and a routing fallback. This adds real behavioral context without contradiction.

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?

Two sentences, the most important return behavior up front, followed by the duplicate-title warning and alternative. Each sentence adds unique operational value; there is no padding.

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?

With only two parameters, one required, and a full output schema, the description covers everything an agent needs: what the tool does, what it returns, key constraints, and the correct sibling for modification. Nothing essential is missing.

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 schema already documents both parameters well. The description adds only the case-insensitive uniqueness nuance beyond the schema's existing 'Must be unique' note. That is small extra value, consistent with the baseline 3 for high coverage.

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 uses a specific verb-resource pair ('Create a new note') and clearly states the distinguishing behavior: returning the generated id for later calls. It also contrasts with update_note by pointing out that duplicate titles are errors, making the tool's role unmistakable among its siblings.

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 names when not to use this tool ('if the user wants to change an existing note, use update_note') and clearly flags the uniqueness constraint that should silence spurious create attempts. This gives the agent direct decision support.

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

Install Server

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/jasongilman/mcp-eval-demo'

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