Skip to main content
Glama
hakenshi

Agentic Backlog MCP Server

by hakenshi

Create task

backlog.create_task

Create a task in a backlog project by specifying project ID and title. Optionally include status, priority, description, and other fields to manage task details.

Instructions

Creates a task through the running backlog API.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleYes
sourceNo
statusNo
agent_idNo
priorityNo
project_idYes
session_idNo
descriptionNo
external_refNo
idempotency_keyNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.3

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 must disclose behavioral traits itself, but it only says 'creates a task.' It does not mention side effects, required fields, validation rules, idempotency behavior despite the idempotency_key parameter, or 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.

Conciseness3/5

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

The description is short and the core action is front-loaded, but the phrase 'through the running backlog API' is filler that adds little value. While concise, it is under-specified for a tool with 10 parameters and no annotations.

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

Completeness1/5

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

Given 10 parameters, no output schema, no annotations, and many sibling tools, this one-line description is severely incomplete. It lacks prerequisites, return values, behavior notes, and any context about how to use the task creation workflow. An agent must rely almost entirely on the schema and tool name.

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?

Schema description coverage is 0% and the description adds no meaning to any of the 10 parameters. It does not explain that project_id and title are required, what status or priority enums mean, or how external_ref and idempotency_key should be used. The agent receives no parameter-level help.

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: 'Creates a task.' This clearly separates it from sibling tools like update_task, delete_task, and list_tasks at a high level. However, it lacks explicit sibling differentiation and does not indicate what kind of task or context, relying on the name and schema.

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?

No guidance is given for when to use this tool versus alternatives such as plan_from_context, update_task, or claim_task. The description only restates the create action and does not mention prerequisites like an existing project or when to prefer another sibling.

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