Skip to main content
Glama

create_task

Create a new task in Microsoft To Do. Set title, notes, categories, due/start/reminder dates in UTC+8, importance, status, and completion date for personal task tracking.

Instructions

在 Microsoft To Do 中创建新任务 (UTC+8)。

参数: title (str): 任务标题。 body (str, 可选): 任务内容描述。 body_type (str, 可选): 'text' (纯文本) 或 'html'。默认为 'text'。 categories (List[str], 可选): 任务关联的分类。 due_date (str, 可选): 截止日期。ISO 8601 格式 (如 '2025-12-31T23:59:59')。必须是东八区本地时间 (UTC+8)。 start_date (str, 可选): 开始日期。ISO 8601 格式。必须是东八区本地时间 (UTC+8)。 reminder_date (str, 可选): 提醒日期/时间。ISO 8601 格式。必须是东八区本地时间 (UTC+8)。 importance (str, 可选): 重要程度:'low' (低), 'normal' (普通), 'high' (高)。 status (str, 可选): 任务状态:'notStarted', 'inProgress', 'completed', 'waitingOnOthers', 'deferred'。 completed_date (str, 可选): 任务完成日期。ISO 8601 格式。必须是东八区本地时间 (UTC+8)。

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
bodyNo
titleYes
statusNo
due_dateNo
body_typeNotext
categoriesNo
importanceNo
start_dateNo
reminder_dateNo
completed_dateNo

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description carries the full burden. It does add one genuinely useful behavioral constraint — all dates must be UTC+8 local time — which is non-obvious and repeated for every date parameter. However, it says nothing about required permissions/auth, whether the task is returned, error behavior, or duplicate handling.

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 single front-loaded purpose sentence is followed by a tight, consistently formatted parameter list with no filler prose. The bulk is parameter documentation that duplicates the schema's property names, which is necessary given 0% schema description coverage but keeps the block long.

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

Completeness4/5

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

For a 10-parameter write tool with no annotations and no output schema, the description covers parameters and the timezone rule well. It is still silent on auth requirements, the returned object, and edge behavior (e.g., setting completed_date or status at creation time).

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

Parameters5/5

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

Schema description coverage is 0% and there are 10 parameters, yet the description documents each one with type, optionality, and format. It also supplies enum values absent from the schema ('text'/'html', 'low'/'normal'/'high', and the five status values) plus the ISO 8601 timezone convention, which is exactly the compensation required here.

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 opening sentence states a specific verb and resource in a specific product: '在 Microsoft To Do 中创建新任务'. The create_/update_/list_/delete_/complete_ naming convention across siblings makes the action unambiguous, though the description never explicitly contrasts itself with those siblings.

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 is implied by the 'create' verb and the To Do context, but there is no explicit when-to-use guidance, no mention of prerequisites, and no pointer to alternatives such as update_task (for existing tasks) or create_calendar_event (for calendar items, which is a realistic confusion in this sibling set).

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