Skip to main content
Glama

create_daily_note

Create today's daily note from your vault template, adding frontmatter and sections. Prevents overwriting if it already exists, with optional date and custom variables.

Instructions

Create today's daily note from the configured template.

Uses the vault's daily template to create a fully structured note with all standard frontmatter fields and sections. If the note already exists, returns a message without overwriting.

Args: date: Optional date in YYYY-MM-DD format. Defaults to today. extra_vars: Optional dictionary of additional template variables.

Returns: Result of the creation or message if note already exists.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dateNo
extra_varsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.3.1

TDQS

A4.6/5.0
Behavior4/5

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

No annotations are provided, so the description carries the full burden. It transparently discloses template-based creation, full structure, and idempotent behavior: if the note already exists, it returns a message without overwriting. It does not mention failure modes like a missing template, but the core behavior 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.

Conciseness5/5

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

The main purpose is front-loaded in the first sentence. The following sentences add non-redundant specifics about structure, idempotency, parameters, and return value. There is no filler or repetition.

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 optional parameters, a provided output schema, and no annotations, the description is complete enough for an agent to invoke the tool correctly. It covers parameter formats, defaults, behavior when the note exists, and what is returned.

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

Parameters5/5

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

The input schema has 0% description coverage and only states types and defaults, so the description must compensate. It fully does: it explains date is in YYYY-MM-DD format, defaults to today, and extra_vars is an optional dictionary of template variables.

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 opens with a specific verb and resource: 'Create today's daily note from the configured template.' It also clarifies the note is fully structured with standard frontmatter fields and sections, which distinguishes it from sibling tools like append_to_daily_note, create_weekly_note, and log_to_daily_note.

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 intended use is clear: create the daily note from a template. The no-overwrite clause subtly implies this is not for adding content to an existing note, but it does not explicitly name alternatives like append_to_daily_note or state when to choose them.

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