Skip to main content
Glama

Update Membership

update_membership

Update a membership's role in a Planka project by specifying the membership ID and the new role to assign.

Instructions

Update a membership's role.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
roleNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

C2.8/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 the full burden of disclosing behavioral traits. It only says 'Update a membership's role' and does not mention whether the operation is destructive, whether it requires permissions, what happens with an invalid role, or whether other membership fields are untouched.

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 description is a single efficient sentence with no filler. It is appropriately brief for a simple update operation, though it may be slightly too terse to be fully helpful.

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?

With only two parameters and an output schema present, the tool is relatively simple and the return value is already captured structurally. However, the description leaves gaps around accepted role values, the meaning of the default role, and any behavioral side effects, making it minimally viable rather than complete.

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 description must compensate. It gives some meaning to the 'role' parameter by naming it, but it does not explain what the 'id' parameter refers to, what role values are valid, or how the default empty string should be interpreted.

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 clearly states the action ('Update') and the resource ('a membership's role'), which separates it from create/get/delete membership tools. It does not explicitly contrast with sibling tools, but the resource and field are specific enough to avoid confusion.

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 tool versus alternatives such as create_membership, get_membership, or delete_membership. The description implies it is for changing an existing membership's role, but it does not state prerequisites, exclusions, or alternative conditions.

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