Skip to main content
Glama

Batch Create Tasks

batch_create_tasks

Create multiple tasks for specified cards in one operation by providing card IDs and task names.

Instructions

Create multiple tasks at once. Each item should have 'cardId' and 'name' keys.

Example: [{"cardId": "123", "name": "Task 1"}, {"cardId": "123", "name": "Task 2"}]

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tasksYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries full responsibility for behavioral disclosure. It only states that tasks are created and what keys to include; it does not disclose permissions, atomicity/partial-failure behavior, validation rules, or side effects beyond creation.

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 entire guidance is two sentences plus an example, with the core behavior stated first and no filler. The example is directly actionable.

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?

Given an output schema exists, return values need not be described. However, with no annotations, key operational details such as how invalid card IDs are handled, whether insertion is all-or-nothing, and whether additional item keys are allowed are missing; the guidance is adequate for a happy-path invocation but not fully complete.

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?

With 0% schema description coverage, the description compensates by explicitly stating the required item keys ('cardId' and 'name') and giving a concrete JSON example. It does not fully enumerate optional item properties, but it provides enough to invoke the tool correctly.

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 'Create multiple tasks at once,' a specific verb and resource that clearly conveys bulk task creation. The example and requirement for 'cardId' and 'name' further disambiguate it from single-task creation siblings like create_task.

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?

'Create multiple tasks at once' is clear context for choosing this tool when a batch of tasks needs to be created in one call. It does not explicitly name when-not-to-use or alternatives like create_task, but the batch scope is unambiguous.

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