Skip to main content
Glama
Rubio-Enterprises

grocy-mcp

Task Create Tool

task_create_tool

Create a new household task with an optional due date, description, and assigned user to manage to-dos in Grocy.

Instructions

Create a new task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYesTask description (e.g. "Buy birthday present").
due_dateNoOptional due date in YYYY-MM-DD format.
descriptionNoOptional longer description or notes.
assigned_to_user_idNoOptional Grocy user ID to assign the task to.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.0

TDQS

B3.1/5.0
Behavior2/5

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

Annotations are absent, so the description carries the full burden of behavioral disclosure. It only states 'Create a new task' without describing side effects, authentication requirements, response behavior, or any constraints beyond the scheme. It implies a write operation but does not explicitly disclose what happens on success or failure.

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?

The description is a single sentence with no filler, front-loading the core action. It is concise and to the point, though it could incorporate a small amount of usage context without becoming bloated. It is not a tautology, so it earns a solid score.

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

Completeness2/5

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

Given a create tool with no annotations, the description is too sparse to be considered complete. Although the input schema and output schema cover parameters and return values, the description lacks usage guidance, behavioral context, and any indication of how it fits into the task management workflow alongside sibling tools.

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 each of the four parameters (name, due_date, description, assigned_to_user_id) already documented in the input schema. The description itself adds no parameter-specific meaning, but the high schema coverage meets the baseline of 3.

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 uses a specific verb and resource ('Create a new task'), clearly distinguishing it from sibling tools like task_delete_tool, task_complete_tool, task_undo_tool, and tasks_list_tool. An agent can unambiguously tell this is the creation tool within the task CRUD family.

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?

The description provides no guidance on when to use this tool versus alternatives. It does not mention that this is for adding new tasks only, nor does it contrast with tasks_list_tool, task_complete_tool, or task_delete_tool. No prerequisites or exclusions are stated.

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

Deploy Server

Other Tools