Skip to main content
Glama

ofw_create_journal_entry

Create a new journal entry in OurFamilyWizard with a title and body. Use it to document co-parenting events or notes for shared access.

Instructions

Create a new journal entry in OurFamilyWizard

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYesEntry text content
titleYesEntry title

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv2.19.4

TDQS

A3.5/5.0
Behavior2/5

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

The description essentially restates the tool name and adds only the product context, so it discloses no behavioral traits beyond what the annotations already provide. The destructiveHint:false annotation covers non-destructiveness, but the description does not add anything about persistence, visibility, authentication, or expected effects of creating the entry.

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 one short, front-loaded sentence with no filler or redundant clauses. It names the operation and the resource efficiently, which is appropriate for a simple two-parameter creation tool.

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?

For a simple creation tool with two self-explanatory parameters, the description is largely usable, but it omits any indication of what response the agent should expect after creation. Since there is no output schema, a brief note about the result or a pointer to ofw_list_journal_entries for verification would improve completeness.

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%, with 'title' and 'body' already described as 'Entry title' and 'Entry text content'. The description adds no additional parameter nuance, but because the schema fully documents the parameters, the baseline of 3 is appropriate.

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 states a specific action ('Create') and a specific resource ('journal entry') within a named product ('OurFamilyWizard'). This clearly distinguishes it from sibling create tools like ofw_create_expense and ofw_create_event, so an agent knows which operation this is without inspecting 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 context is only implied by the resource name and description; nothing explicitly says when to choose this over ofw_list_journal_entries, ofw_create_expense, or other journal-related tools. It is adequate for a simple create operation but provides no explicit alternatives or exclusions.

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