Skip to main content
Glama
MAG-Cie

MCP for Microsoft To Do

update_checklist_item

Idempotent

Rename or check/uncheck a sub-item in a Microsoft To Do task.

Instructions

Update a sub-item (rename or check/uncheck).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
list_idYes
task_idYes
item_idYes
display_nameNo
is_checkedNo
verboseNoIf true: returns full JSON. Otherwise: compact text format (default, saves tokens).

Implementation Reference

  • The actual implementation of updateChecklistItem: calls Microsoft Graph PATCH endpoint to update a checklist item's displayName and/or isChecked.
    export async function updateChecklistItem(
      listId: string,
      taskId: string,
      itemId: string,
      patch: { displayName?: string; isChecked?: boolean }
    ): Promise<ChecklistItem> {
      return graphFetch<ChecklistItem>(
        `/me/todo/lists/${enc(listId)}/tasks/${enc(taskId)}/checklistItems/${enc(itemId)}`,
        {
          method: "PATCH",
          body: JSON.stringify(patch),
        }
      );
    }
  • Tool handler: parses args with zod schema, calls updateChecklistItem from graph.ts, formats the result.
    case "update_checklist_item": {
      const a = schemas.update_checklist_item.strict().parse(args);
      const item = await updateChecklistItem(a.list_id, a.task_id, a.item_id, {
        displayName: a.display_name,
        isChecked: a.is_checked,
      });
      return out(item, a.verbose, formatChecklistCompact);
    }
  • Zod schema for update_checklist_item inputs: list_id, task_id, item_id (required), display_name and is_checked (optional).
    update_checklist_item: z.object({
      list_id: z.string(),
      task_id: z.string(),
      item_id: z.string(),
      display_name: z.string().optional(),
      is_checked: z.boolean().optional(),
      ...verboseField,
    }),
  • src/index.ts:689-703 (registration)
    Tool registration: declares name 'update_checklist_item', description, and inputSchema for MCP protocol.
      name: "update_checklist_item",
      description: "Update a sub-item (rename or check/uncheck).",
      inputSchema: {
        type: "object",
        properties: {
          list_id: { type: "string" },
          task_id: { type: "string" },
          item_id: { type: "string" },
          display_name: { type: "string" },
          is_checked: { type: "boolean" },
          ...verboseJsonProp,
        },
        required: ["list_id", "task_id", "item_id"],
      },
    },
  • Capability metadata entry: marks update_checklist_item as WRITE_UPDATE (non-idempotent write operation).
    update_checklist_item:  { ...WRITE_UPDATE, title: "Update checklist item" },
Behavior3/5

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

Annotations already indicate readOnlyHint=false, destructiveHint=false, idempotentHint=true. Description adds the concrete actions (rename, check/uncheck) but does not disclose additional behavior like error conditions or side effects. This is adequate but not exceptional.

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 description is a single sentence that conveys the core function efficiently. No wasted words, front-loaded with the action.

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?

Despite having 6 parameters and no output schema, the description is too brief. It does not explain the effect of omitted optional fields, return format, or behavior on duplicate updates. The annotations add some context, but the description lacks necessary detail for a complex tool.

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

Parameters2/5

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

With only 17% schema coverage, the description should compensate but only hints at the role of display_name and is_checked via 'rename or check/uncheck'. It does not explain list_id, task_id, item_id, or verbose beyond what the schema provides. The verbose parameter has its own description, but others lack clarity.

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?

Description clearly states 'Update a sub-item' with specific examples 'rename or check/uncheck'. It effectively distinguishes this from sibling tools like create_checklist_item, delete_checklist_item, and list_checklist_items.

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?

The description implies when to use (to modify a checklist item) but does not explicitly state when not to use or suggest alternatives. No mention of prerequisites or conditions.

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

Install Server

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/MAG-Cie/mcp-microsoft-todo'

If you have feedback or need assistance with the MCP directory API, please join our Discord server