Skip to main content
Glama
tspvivek
by tspvivek

baasix_get_permissions

Retrieve permissions assigned to a specific role to determine access rights and troubleshoot authorization issues.

Instructions

Get permissions for a specific role

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleYesRole name

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.7

TDQS

A3.6/5.0
Behavior3/5

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

No annotations are provided, so the description carries the behavioral burden. 'Get permissions for a specific role' conveys a read-only retrieval intent, but it does not disclose whether the role must exist, what the response shape is, or how errors are handled. This is adequate for a simple getter but not rich.

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, front-loaded sentence with no filler or redundant phrasing. Every word contributes to understanding what the tool does.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter read-only retrieval tool with no output schema, the description is sufficient to guide invocation: the agent knows it needs a role name. It could be more complete by noting that available roles can be found via baasix_list_roles, but that is not essential for correct basic use.

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 the role parameter already has a clear description ('Role name'). The tool description adds little beyond restating the role's purpose, so the baseline of 3 is appropriate.

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 ('Get'), a clear resource ('permissions'), and a scope ('for a specific role'). This distinguishes it from baasix_list_permissions and baasix_get_permission, though it does not explicitly name those alternatives.

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 the tool should be used when permissions for a particular role are needed, but it gives no explicit guidance about when to prefer sibling tools such as baasix_get_permission or baasix_list_permissions. No exclusions or alternatives are mentioned.

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