Skip to main content
Glama

create_many

Bulk create multiple shopping list items in a household's Mealie shopping list via one request.

Instructions

Create Many — Households: Shopping List Items. Bulk create shopping item. [POST /api/households/shopping/items/create-bulk] Keywords: create_many, create many, bulk create shopping item, create shopping item, add shopping item, new shopping item, make shopping item, write shopping item, shopping item, shopping items, households shopping list items, households, shopping, items, create bulk, create, add, new, make, write, post, mealie.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.2.11

TDQS

C2.4/5.0
Behavior2/5

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

With no annotations, the description carries the full behavioral burden, and it only supplies the HTTP verb and path (POST .../create-bulk). It omits important traits for a bulk mutation: auth requirements, whether it is atomic or partially succeeds, duplicate handling, and whether items are appended or replace existing ones.

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

Conciseness2/5

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

The first two sentences are front-loaded and useful, but they are followed by a long keyword/synonym dump ('create_many, create many, bulk create shopping item... mealie') that is pure noise and inflates the definition without adding meaning.

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?

For a bulk mutation over a complex nested payload with no annotations and no output schema, the description should explain required inputs, auth, and failure semantics. It supplies only the endpoint, leaving the agent under-informed for a non-trivial write operation.

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

Parameters1/5

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

The single 'body' parameter is an array of ShoppingListItemCreate with 0% schema description coverage, and the description says nothing about the payload shape, the required shoppingListId, or the per-item fields (food, unit, quantity, position). An agent gets no semantic help about parameters from the description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'Bulk create shopping item' scoped to 'Households: Shopping List Items', which is clearer than the bare name 'create_many'. It does not, however, explicitly contrast itself with siblings like households_shopping_list_items_create_one, so the reader must infer that 'bulk' is the distinguishing factor.

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?

There is no when-to-use guidance. Nothing says when to prefer this bulk endpoint over households_shopping_list_items_create_one vs add_recipe_ingredients_to_list, nor any prerequisite such as needing an existing shopping list id. The keyword list adds no routing information.

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