Skip to main content
Glama
asisrasyid

SheetMaster Todo MCP

by asisrasyid

remove_assignee

Unassigns a user from a task in SheetMaster Todo MCP using the task ID and user ID. Use it to update task ownership and keep board assignments accurate.

Instructions

Unassign a user from a task.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
taskIdYes
userIdYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full behavioral burden and does not deliver it: it does not say whether unassignment is reversible, whether notifications are sent, what permission level is required, or what happens if the user is not currently assigned. Only the bare mutation is implied.

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?

A single short sentence with zero padding and the verb front-loaded. It is efficient, though its brevity contributes to the missing detail scored elsewhere.

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 mutation tool with no annotations, no output schema, and two undocumented required parameters, the description does not supply enough for an agent to call it confidently. Return behavior and error conditions are left entirely unspecified.

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?

Schema description coverage is 0%, so the schema documents nothing about taskId and userId. The description's 'a user' and 'a task' loosely map to the two parameters but add no format, identifier type, or constraint detail to compensate for the coverage gap.

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 ('Unassign') and two resources (user, task), making the operation unambiguous. It does not explicitly name the sibling add_assignee or other alternatives, but the meaning is self-evident against the sibling list.

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 guidance on when to use this instead of related tools such as update_task or add_assignee, and no prerequisites or exclusions are stated. The agent must infer the usage context entirely.

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