Fresh Jots MCP Server
This server lets you manage Fresh Jots notes and folders through any MCP-compatible AI client.
Notes
List notes: Retrieve summaries with optional filtering by folder/format, sort order, and pagination.
Read a note: Fetch full content by exact filename or numeric ID.
Create a note: Create a new plain-text note with a title, optional body, and optional folder.
Append to a note: Append text to a note by exact filename, automatically creating it if it doesn't exist — ideal for logs, AI session transcripts, or journals.
Update a note: Modify a plain-text note's title, body, and/or folder; only supplied fields are changed.
Delete a note: Permanently delete a note by numeric ID (append-only notes cannot be deleted).
Move a note: Move a note into a folder or remove it from any folder.
Folders
List folders: Retrieve all folders, ordered alphabetically.
Create a folder: Create a new uniquely named folder.
Rename a folder: Rename an existing folder by numeric ID.
Delete a folder: Delete a folder by numeric ID; its notes are un-filed but not deleted.
Key limitation: Only plain-text notes can be created or edited; rich (Trix) notes can only be listed and read.
freshjots-mcp
A Model Context Protocol (MCP) server for Fresh Jots. It exposes your Fresh Jots notes as MCP tools, so any MCP client — Claude Desktop, Claude Code, Cursor, and others — can read and write them directly. Point your AI agent's output at a Fresh Jots note, log your coding sessions, or let an assistant search and update your notebook, all through the API.
MCP is an open standard for connecting AI assistants to external tools and data — think of it as a universal adapter, so one integration works across every compatible client.
What you can do
The server talks to the Fresh Jots REST API over a bearer token and exposes these tools:
Notes — list_notes, read_note, create_note, append_to_note, update_note, delete_note, move_note
Folders — list_folders, create_folder, rename_folder, delete_folder
The standout is append_to_note: it appends to a note addressed by an exact filename (e.g. ai-sessions.txt) and creates the note on first write. Call it repeatedly to accumulate a log — AI session transcripts, cron output, a running journal — in one place.
Notes are plain text through the API: rich (Trix) notes can be listed and read, but only plain notes can be created or edited here.
Related MCP server: aws-helper MCP Server
Requirements
Node.js 18 or newer
A Fresh Jots API token (Dev or Team plan). Create one at https://freshjots.com/settings/api_tokens. Tokens look like
mn_….
Install
Until this is published to npm, build it from source:
git clone https://github.com/Goran-Arsov/freshjots-mcp.git
cd freshjots-mcp
npm install # also builds via the prepare script
npm run build # or build explicitlyThe runnable server is then dist/index.js.
Configuration
The server reads its token from the environment:
FRESHJOTS_TOKEN(required) — yourmn_…API token.FRESHJOTS_API_TOKENis also accepted.FRESHJOTS_BASE_URL(optional) — defaults tohttps://freshjots.com/api/v1. Override for a self-hosted or staging instance.FRESHJOTS_PASSPHRASE(optional) — enables transparent client-side encryption (see below).
Encryption
Set FRESHJOTS_PASSPHRASE and the server can keep notes Fresh Jots cannot read. create_note and append_to_note take an encrypt: true argument that encrypts the body locally before it ever leaves your machine, and marks the note client-encrypted; read_note takes decrypt: true to decrypt it back. The model works in plaintext while Fresh Jots stores only ciphertext — you hold the only key, so lose the passphrase and the note is unrecoverable. Encryption is per-note and personal-only (not team notes); a note's title and metadata stay in the clear. The format (fj1: AES-256-CBC + HMAC-SHA256, PBKDF2) is interoperable with the JS, Python, Ruby, and shell clients. See https://freshjots.com/encrypted-notes.
Claude Desktop
Add to claude_desktop_config.json (Settings → Developer → Edit Config):
{
"mcpServers": {
"freshjots": {
"command": "node",
"args": ["/absolute/path/to/freshjots-mcp/dist/index.js"],
"env": { "FRESHJOTS_TOKEN": "mn_your_token_here" }
}
}
}Claude Code
claude mcp add freshjots --scope user \
-e FRESHJOTS_TOKEN='${FRESHJOTS_TOKEN}' \
-- node /absolute/path/to/freshjots-mcp/dist/index.jsUsing '${FRESHJOTS_TOKEN}' (single-quoted) stores the reference, not the secret — Claude Code expands it from your shell environment at launch, so keep export FRESHJOTS_TOKEN=mn_… in your shell profile. Or pass the literal token with -e FRESHJOTS_TOKEN=mn_… if you prefer it in the config.
Cursor
Add to ~/.cursor/mcp.json (or a project .cursor/mcp.json):
{
"mcpServers": {
"freshjots": {
"command": "node",
"args": ["/absolute/path/to/freshjots-mcp/dist/index.js"],
"env": { "FRESHJOTS_TOKEN": "mn_your_token_here" }
}
}
}Once published to npm, command: "npx", args: ["-y", "freshjots-mcp"] will replace the local path in any of the above.
Development
npm run build # compile TypeScript to dist/
npm test # unit tests (fetch stubbed; no network)
node smoke.mjs # live end-to-end test against the real API — needs FRESHJOTS_TOKEN;
# creates only clearly-marked [mcp-test] notes/folders and deletes themLicense
MIT © Goran Arsov
Available Tools
11 toolsappend_to_noteAppend to a note (creates it if missing)AInspect
Append text to the note with the given exact filename, creating the note if it does not exist yet (find-or-create). This is the primitive for logging: call it repeatedly to accumulate entries (AI session logs, cron output, journal lines) in one note addressed by a stable filename like "ai-sessions.txt". Plain text only.
| Name | Required | Description | Default |
|---|---|---|---|
| filename | Yes | Exact filename to append to / create, e.g. "ai-sessions.txt". | |
| text | Yes | The text to append (added as a new entry). | |
| append_only | No | On first-touch creation only: lock the note append-only (default true). Ignored if the note already exists. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description must cover behavioral traits. It discloses find-or-create behavior, plain text only, and default append-only on creation. However, it omits details on idempotency, error handling, or whether existing append-only locks are respected on subsequent calls.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no filler. The first sentence captures the core action and find-or-create behavior; the second provides the use case and constraints. Every word serves a purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's simplicity and lack of output schema, the description covers key aspects: purpose, find-or-create, usage pattern, and parameter constraints. It could mention response format or error scenarios, but is sufficient for an append operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but the description adds value by explaining 'exact filename' with example, 'new entry' semantics for text, and the default behavior of append_only on creation. This enriches the schema's bare descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description explicitly states 'Append text to the note' with a find-or-create behavior, distinguishing it from sibling tools like create_note or update_note. The logging use case is clearly articulated.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description identifies the tool as a 'primitive for logging' with repeated calls for accumulating entries, providing clear context. However, it does not explicitly state when not to use it or list alternatives for other operations.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_folderCreate a folderAInspect
Create a new folder. Folder names are unique (case-insensitive) within the account.
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | Name of the new folder. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description bears full burden. Mentions mutating action and uniqueness constraint, but lacks details on permissions, error handling, or consequences of duplicate names.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, no filler. First sentence provides purpose, second adds a key constraint. Well-structured.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Simple tool with one parameter and no output schema. Description covers core action and a constraint, but fails to mention return behavior or success indication. Lacks error scenarios.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with a basic description. The description adds useful context about case-insensitive uniqueness, which goes beyond the schema's 'Name of the new folder.'
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states 'Create a new folder' with a specific verb and resource. Distinguishes from siblings like delete_folder, list_folders, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides one constraint (uniqueness) but does not explicitly state when to use vs alternatives or any prerequisites. No guidance on when not to use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
create_noteCreate a noteAInspect
Create a new plain-text note. The server derives the filename from the title. To create a note you can address later by an exact filename of your choosing, use append_to_note instead (it creates the note on first write). Plain text only.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Title of the note. The server derives the filename from it. | |
| body | No | Plain-text body of the note. | |
| folder_id | No | Optional folder id to file the note under. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It mentions server derives filename from title and plain text limitation, but does not disclose behavior on duplicate titles, whether it overwrites, or any auth requirements.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, no wasted words, front-loaded with main action. Efficient and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple creation tool with 3 params and no output schema, description covers core purpose, parameter semantics, and sibling differentiation. Could mention duplicate behavior, but overall sufficient.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, but description adds value by explaining that server derives filename from title and that body is plain text, which may not be fully clear from type alone.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description clearly states it creates a new plain-text note, and distinguishes from append_to_note by noting that append_to_note allows specifying exact filename and can create on first write.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly tells when to use this tool vs append_to_note, providing alternative for exact filename control. Also specifies plain text only.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_folderDelete a folderADestructiveInspect
Delete a folder by its numeric id. Notes inside it are NOT deleted — they are moved out of the folder (un-filed).
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric id of the folder to delete. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already mark destructiveHint=true, and the description adds critical behavior: notes inside are not deleted but moved out. This goes beyond the annotation and fully discloses the tool's effect.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loading the action and then adding a critical behavioral detail. No redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and a destructive annotation, the description fully covers the purpose, input, and side effect. No output schema needed.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There is only one parameter (id) with schema description coverage at 100%. The description does not add additional parameter-level meaning beyond what the schema already provides, so baseline score is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Delete a folder by its numeric id' and distinguishes behavior from note deletion by specifying that notes are moved out, not deleted. This differentiates it from sibling tools like delete_note.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context for when to use the tool (to delete a folder by numeric id) and implicitly distinguishes from delete_note by describing the side effect on notes. However, it does not explicitly state when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
delete_noteDelete a noteADestructiveInspect
Delete a note by its numeric id. Append-only notes cannot be deleted via the API. This cannot be undone through this server.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric id of the note to delete. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate destructiveHint=true, but the description adds valuable context by stating that deletion cannot be undone and that append-only notes cannot be deleted via the API. This goes beyond the annotation.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences that front-load the action and include important constraints. Every sentence is informative and there is no wasted text.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple tool with one parameter and no output schema, the description covers all necessary context: the operation, the parameter, constraints, and consequences. It is complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already provides a full description of the 'id' parameter (numeric id). The description only restates 'by its numeric id', adding no new meaning beyond the schema. With 100% schema coverage, baseline is 3.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action 'Delete a note' and specifies the resource 'by its numeric id'. It also mentions a constraint (append-only notes cannot be deleted), which helps distinguish from sibling tools like delete_folder.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear context for when to use the tool (to permanently delete a note) and a condition (cannot delete append-only notes). However, it does not explicitly suggest alternatives when deletion is not appropriate, such as archiving.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_foldersList foldersARead-onlyInspect
List all folders in the account (id, name, timestamps), ordered alphabetically.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true. The description adds ordering behavior (alphabetically) but does not disclose potential performance or pagination. Adequate but not enriched beyond annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Single sentence, no wasted words. All information is front-loaded and efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
No output schema exists, but the description covers return fields (id, name, timestamps) and ordering, making it complete enough for a simple list operation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters, so the description adds value by explaining the output fields and ordering. Baseline for 0 params is 4, and the description meets that.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'list all folders' and specifies included fields (id, name, timestamps) and ordering (alphabetically). This distinguishes it from sibling tools like create_folder, delete_folder, etc.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description does not provide when-to-use or when-not-to-use guidance. Usage is implied as a basic listing operation, but no mention of alternatives or context for use.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_notesList notesARead-onlyInspect
List the account's notes (most-recently-updated first by default) as summaries: id, filename, title, format, timestamps, and a body excerpt. Filter by folder or format. Both plain and rich notes are listed, but only plain notes can be created or edited through this server.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Max notes to return (default 50, max 200). | |
| offset | No | Pagination offset (default 0). | |
| format | No | Filter by note format. | |
| folder_id | No | Folder id to filter by, or "none" for notes in no folder. | |
| sort | No | Sort order (default "updated"). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description is consistent with the readOnlyHint annotation (no contradiction). It adds behavioral context beyond annotations, such as default sort order (most-recently-updated first) and the fact that only plain notes are editable via this server, which informs the agent about tool capabilities.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise with three sentences covering purpose, output details, and a limitation. It is front-loaded with the main action. However, it could be more structured (e.g., bullet points for included fields or filters) to improve readability, but it remains efficient.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given no output schema, the description explains the return value (summaries with specific fields). It covers filtering, default sorting, and the plain/rich note distinction. All 5 parameters are covered by schema descriptions. The description could mention pagination behavior (e.g., defaults) but is largely complete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so all parameters are documented in the schema. The description adds minimal extra meaning beyond the schema, e.g., stating that filtering is by folder or format, and default sort order is implied but already clear from schema defaults. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (list notes), the resource (account's notes), and the output format (summaries with specific fields). It also distinguishes from sibling tools by mentioning that only plain notes can be created/edited through this server, implying that for rich notes other tools are needed.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides filtering options (folder/format) and a notable limitation about plain vs. rich notes, which helps with tool selection. However, it does not explicitly state when not to use this tool, e.g., for full note content (use read_note) or for creation/editing of rich notes.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
move_noteMove a note to a folderAInspect
Move a note (by numeric id) into a folder, or out of any folder. Pass a folder_id to file it there, or null to un-file it.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric id of the note to move. | |
| folder_id | Yes | Target folder id, or null to remove the note from its folder. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden. It discloses the two behavioral modes (file/un-file), but lacks details on side effects, error handling, or permissions. For a simple move operation, this is adequate but not rich.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, well-structured sentence with no unnecessary words. It directly conveys the tool's purpose and usage without any fluff.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a two-parameter tool with no output schema, the description is complete. It explains both use cases and the role of each parameter. Minor missing details like error behavior are acceptable given the simplicity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters with descriptions. The description adds value by clarifying the null case for folder_id ('un-file'). It doesn't repeat redundant information, providing a modest improvement over the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action (move a note) and the resource (note by numeric id), with two distinct modes (into a folder or out of any folder). It effectively distinguishes from sibling tools like append_to_note or create_note.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides explicit guidance on how to use the tool: pass folder_id to file, null to un-file. While it doesn't discuss when not to use it versus alternatives, the context is clear given the sibling tools are different actions.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
read_noteRead a noteARead-onlyInspect
Read a single note in full (including its complete plain_body) by exact filename (e.g. "ai-sessions.txt") or numeric id. Provide exactly one of filename or id.
| Name | Required | Description | Default |
|---|---|---|---|
| filename | No | Exact filename of the note (preferred addressing). | |
| id | No | Numeric note id (e.g. from list_notes). |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true, so no mutation. The description adds that it returns the full plain_body, which is valuable beyond annotations. No contradictions.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences with key information front-loaded. No wasted words. Efficient and clear.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a read tool with two optional parameters (one required), the description covers what is returned (complete plain_body) and how to identify the note. No output schema needed; description suffices.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100% with descriptions. The description adds that exactly one parameter must be used and provides an example for filename, enhancing semantics beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Clearly states it reads a single note (verb+resource) and specifies retrieval of complete plain_body. Distinguishes from siblings like list_notes (list) and update_note (modify) by focusing on read and exact identification.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly instructs to provide exactly one of filename or id, which ensures correct invocation. While it doesn't explicitly state when not to use, the context of reading a specific note is clear from the description.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
rename_folderRename a folderBInspect
Rename an existing folder, addressed by its numeric id.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Numeric id of the folder. | |
| name | Yes | New folder name. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must fully disclose behavior. It states 'rename an existing folder' implying mutation, but does not mention permissions, side effects (e.g., impact on child folders), or return value. This is insufficient for an agent to fully understand the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single sentence with 13 words, front-loading the action and resource. No extraneous information is present.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description should cover success behavior, error conditions (e.g., folder not found, duplicate name), and constraints. It does not, leaving gaps for an agent to guess.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so the schema already documents both parameters. The description adds that the folder is addressed by a 'numeric id' and the name is a 'new folder name', but these provide no additional meaning beyond the schema definitions. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Rename' and resource 'folder'. It is distinct from sibling tools like create_folder, delete_folder, and list_folders, as none of them perform a rename operation.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies use when renaming a folder, but does not explicitly state when to use this tool versus alternatives or provide any exclusions. No alternative tools for renaming exist among siblings, but the lack of explicit guidance limits the score.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_noteUpdate a noteAInspect
Update a plain-text note's title, body, and/or folder, addressed by exact filename or numeric id. Only the fields you supply change; omitted fields are left untouched. Rich-format and append-only notes reject body/title edits. Provide exactly one of filename or id.
| Name | Required | Description | Default |
|---|---|---|---|
| filename | No | Exact filename of the note to update. | |
| id | No | Numeric id of the note to update. | |
| title | No | New title (omit to leave unchanged). | |
| body | No | New full plain-text body (replaces the existing body; omit to leave unchanged). | |
| folder_id | No | New folder id, or null to remove from its folder. Omit to leave unchanged. |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. Discloses partial update behavior, required identifier uniqueness, and type restrictions (rejects body/title on rich-format/append-only notes). Does not mention permissions, idempotency, or return value, but adds meaningful context beyond schema.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three sentences, each essential. First states action and identity. Second clarifies partial update semantics. Third adds restrictions and identifier rule. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Tool has 5 parameters and no output schema. Description covers update behavior, restrictions, and identifier rules. Does not describe return value or error conditions, but overall provides enough context for correct invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description adds value: clarifies 'omit to leave unchanged' for body and title, explains folder_id behavior (omit or null to remove), and emphasizes mutual exclusivity of filename/id. This goes beyond the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses specific verbs and objects: 'update a plain-text note's title, body, and/or folder'. It clearly distinguishes from sibling tools like 'append_to_note' (which appends) and 'create_note' (which creates), and the identification method (filename or id) is precise.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Provides explicit guidance: 'Only the fields you supply change; omitted fields are left untouched.' Warns about restrictions on rich-format and append-only notes. Instructs to provide exactly one of filename or id. Does not explicitly contrast with similar tools but covers key use cases.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections.
11 tool updates
v1.0.0- First observed
append_to_note - First observed
create_folder - First observed
create_note - First observed
delete_folder - First observed
delete_note - First observed
list_folders - First observed
list_notes - First observed
move_note - First observed
read_note - First observed
rename_folder - First observed
update_note
TDQS
Scored across 11 tools
Each tool has a distinct purpose: create vs append for notes, CRUD for folders and notes are clearly separated. No two tools are ambiguous.
All tools follow a consistent verb_noun pattern with snake_case (e.g., create_note, delete_folder, list_notes). No deviations.
11 tools cover a complete CRUD surface for notes and folders, with additional operations like append and move. The count is well-scoped for the domain.
The tool set covers basic note and folder lifecycle. Minor gap: no explicit search or folder content retrieval, but list_notes with folder filtering mitigates this.
Maintenance
Related MCP Connectors
Google Keep-style notes app with an MCP server for AI agents to read/write notes.
An MCP server that used to create notes
Shared rooms and durable notes for agents over plain HTTP: rendezvous, hand-off, coordination.
Related MCP Servers
- AlicenseBqualityDmaintenanceA simple MCP server that recalls and saves memories from and to Apple Notes.212MIT
- AlicenseCqualityDmaintenanceA Model Context Protocol server that implements a simple notes system, allowing users to create, list, and summarize text notes.32 npmISC
- FlicenseNot gradedqualityDmaintenancePersonal note management server that enables creating, reading, updating, deleting, listing, and searching notes with support for titles, content, and tags.-
- AlicenseAqualityDmaintenanceComprehensive Apple Notes MCP server for local macOS note management.142,008 npmMIT