Skip to main content
Glama

new_note

Create a structured note in a knowledge vault, automatically routed to the correct folder and template based on note type and project tags.

Instructions

Create a new note in the vault using the correct folder and template.

If the title or tags contain a known project slug (from PROJECT_REGISTRY.md), the note is automatically routed into that project's subfolder: coding → {project}/phases/, research/paper/finding → {project}/research/, resource/reference/tool → {project}/docs/ decision/adr always go to decisions/; project always goes to 10-projects/. A coding-type note whose title slug starts with "fix-" routes to {project}/fixes/ instead of phases/ — a postmortem isn't an in-flight phase plan.

Args: note_type: Type of note — decision, project, research, coding, resource, or inbox title: Human-readable title (will be converted to kebab-case filename) content: Optional initial content to append after the template tags: Comma-separated tags, e.g. 'evo-prism,architecture'. Added to frontmatter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tagsNo
titleYes
contentNo
note_typeYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

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

With no annotations, the description carries the full burden and does disclose substantial behavior: automatic project-slug routing into subfolders, the decision/adr and project special cases, and the fix- postmortem exception. It omits error handling, duplicate-title behavior, and permission requirements, but the key side-effect (where files land) is well covered.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Front-loads the core purpose, then uses a structured block for routing rules and an Args section for parameters. The routing detail is dense but genuinely earns its place; length is justified by the complexity it resolves.

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?

An output schema exists, so return values need not be explained. For a create/mutation tool with no annotations, the description covers the critical routing and per-parameter semantics; only edge cases such as collisions or permission failures are left unaddressed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, so the description must compensate, and it does: note_type enumerates the six valid types (absent from the schema), title notes kebab-case filename conversion, content is labeled optional post-template content, and tags specifies comma-separated format and frontmatter placement.

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?

States a specific verb (create) and resource (note) plus scope (in the vault), and the routing rules make it clearly distinct from siblings like update_note, append_to_note, and read_note. An agent can tell what it produces without opening 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 Guidelines3/5

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

Usage is implied by 'create a new note,' and the extensive routing rules describe how the tool behaves when invoked. However, it never states when to prefer this over alternatives (update_note, append_to_note) or any preconditions/exclusions, so guidance is implied rather than explicit.

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