Skip to main content
Glama

remove_station_user

Remove a user from a station by providing the station ID and user ID. Use this to revoke station access or clean up user assignments.

Instructions

Remove a user from a station

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYesThe user ID
station_idYesThe station ID

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

C2.9/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 signals a destructive mutation via 'Remove' but says nothing about permissions required, reversibility, side effects (e.g., does it fail if the user is the last admin?), or the response. Significant gaps for a delete-style operation.

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 waste, front-loading the verb and resource. It is arguably too terse to be maximally helpful, keeping it from a 5.

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 tool with full schema coverage and no output schema, the minimum is arguably met, but as an unannotated mutation it should disclose permissions and failure/edge behavior. The description leaves that entirely to inference.

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% and both parameters (user_id, station_id) are documented in the schema. The description adds no syntax, format, or constraint details beyond what the schema already provides, so the 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 gives a clear verb ('Remove') and resource ('a user from a station'), which lets an agent distinguish it from add_station_user and update_station_user_role by verb alone. It does not explicitly name those siblings, so it stops short of a 5.

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 add_station_user, update_station_user_role, or get_station_users. No preconditions (e.g., who may remove users, whether the user must exist) are stated.

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