Skip to main content
Glama
sesonet

freelo-mcp-server

Official
by sesonet

Freelo Update Note

freelo_update_note
Idempotent

Update an existing note by specifying its ID and only the fields to change. Provide a new title, content, or both to modify the note.

Instructions

Updates an existing note's title or content. All fields are optional - only provide what needs to change.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
noteIdYesNote ID (e.g., "12345"). Get from freelo_get_note.
noteDataYesUpdated note data - only include fields to change

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesNote name
uuidYesUUID identifier
authorNoUser object
contentNoNote content
date_addNoISO 8601 date-time format (e.g., "2021-10-04T09:32:00+02:00")
project_idNoProject ID
date_edited_atNoISO 8601 date-time format (e.g., "2021-10-04T09:32:00+02:00")

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observedv0.5.0

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already convey the key behavioral hints: non-read-only, idempotent, and non-destructive. The description's partial-update semantics are useful but are largely restated in the schema's noteData description; it adds no new detail about auth, side effects, errors, or what happens to unspecified fields.

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?

The description is a single front-loaded sentence with no filler. 'All fields are optional - only provide what needs to change' is concise and directly instructs the agent how to construct the call.

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?

For a simple two-parameter update tool, the description plus schema and annotations is complete. The agent knows what to update, that the update is partial, and the schema supplies the required noteId and noteData structure; an output schema exists, so return-value documentation is unnecessary.

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 noteId and noteData thoroughly. The description's 'title or content' maps to the schema's 'name' and 'content' fields but does not add meaning beyond what the schema already provides.

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 ('Updates'), a clear resource ('existing note'), and the exact mutable fields ('title or content'). This distinguishes it from related tools like freelo_create_note and freelo_get_note without needing to open the schema.

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 phrase 'existing note' clearly frames this as an update operation rather than creation, and 'only provide what needs to change' explains partial-update usage. However, it does not explicitly name alternatives such as freelo_create_note for new notes, so it stops short of full sibling routing.

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

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/sesonet/freelo-mcp-server'

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