Skip to main content
Glama
vedantparmar12

Sticky Notes MCP Server

save_to_new_file

Create a new notes file by providing a filename and content. Save the text to persistent storage and receive confirmation of the saved note.

Instructions

Save content to a new notes file.

Args:
    filename (str): Name of the new file to create.
    content (str): Content to save in the new file.

Returns:
    str: Confirmation message indicating the content was saved.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYes
filenameYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes
Behavior2/5

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

With no annotations, the description carries the burden of behavioral disclosure. It mentions returning a confirmation message but does not clarify what happens if the file already exists, whether permissions are needed, or other side effects. The description is too sparse to fully inform the agent.

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 concise and well-structured. It front-loads the purpose in a single sentence, then uses Args and Returns sections for clarity. No unnecessary information is included.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple and has an output schema, so basic coverage is adequate. However, it omits important edge-case behavior (e.g., behavior if the file already exists, relationship to add_note). For a file creation tool, this is a moderate gap given no annotations.

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 descriptions are empty (0% coverage), so the description's Args section provides some added meaning: filename is 'name of the new file to create' and content is 'content to save in the new file.' This goes beyond the bare schema types but lacks constraints, formats, or examples.

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 clearly states the action: 'Save content to a new notes file.' The word 'new' differentiates it from siblings like add_note, which may imply adding to an existing note. The verb+resource is specific and unambiguous.

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

Usage Guidelines2/5

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

No guidance is provided on when to use this tool versus alternative sibling tools. It only describes what the tool does without indicating scenarios, prerequisites, or exclusions. Users must infer from the name and sibling list.

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/vedantparmar12/Sticky-notes-MCP'

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