Skip to main content
Glama
midnight480

saga-event-space-mcp-server

by midnight480

update_user_role

Assign a new role to a user by providing their ID and desired role. Requires an API token to change admin, editor, or viewer permissions.

Instructions

Update the role of a user. API token required.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYesID of the user
roleYesNew role to assign

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.1

TDQS

B3.3/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. It discloses that the operation is an update and requires an API token, but does not mention side effects, reversibility, whether the change is immediate, whether existing sessions/tokens are affected, or what permissions are required beyond a valid token.

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?

Two short sentences with no wasted words; the action is front-loaded and the token requirement is a useful, concise addition.

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?

For a simple two-parameter update, the description is mostly adequate, but with no annotations and no output schema it leaves out return behavior and potential side effects. An agent may not know what to expect after calling the tool.

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

Parameters3/5

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

Schema description coverage is 100%, with both parameters 'id' and 'role' documented and an enum on role. The description adds no extra parameter semantics beyond the schema, so baseline 3 applies.

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 has a clear verb and resource ('Update the role of a user') and directly matches the tool name. It does not explicitly distinguish against sibling tools, but no sibling appears to handle the same operation, so the purpose is unambiguous.

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 usage for changing a user's role but provides no explicit when-to-use/when-not-to-use guidance or alternative tool routing. The API token note is a prerequisite, not usage guidance.

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