Skip to main content
Glama
rsp2k
by rsp2k

subaccount_setup_permissions

Grant specific permissions to a subaccount by ID, name, or email. Manage access to instances, DNS, billing, and more.

Instructions

Configure permissions for a subaccount.

Args: subaccount_id: The subaccount ID, name, email, or UUID permissions: List of permissions to grant (e.g., ["instances", "dns", "billing"])

Returns: Permission configuration status

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
permissionsYes
subaccount_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. Addedv1.0.1

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description must carry the full burden. It only says 'Configure permissions' with a vague return statement, but does not disclose side effects (e.g., whether existing permissions are overwritten), required authentication/authorization, or idempotency. The description leaves the mutation behavior entirely unspecified.

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 short and well-structured, with a clear title line, bulleted Args, and Returns. It avoids fluff and front-loads the main purpose. The only slight inefficiency is repeating the parameter names in the Args section, which is acceptable.

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 2-parameter tool with an output schema, the description is mostly sufficient but leaves gaps: it does not specify valid permission values, the effect on existing permissions, or any prerequisites. An agent might call it incorrectly without knowing the available permissions or the semantics of the operation. The presence of an output schema helps, but the description still omits critical operational details.

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 0%, so the description must compensate. It provides useful clarifications: subaccount_id can be ID, name, email, or UUID; permissions is a list with an example. However, it does not enumerate valid permission values or explain the format beyond the example, leaving the agent to guess what strings are acceptable.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Configure permissions for a subaccount' clearly, using a specific verb and object. It distinguishes this from sibling tools like subaccount_create or subaccount_find_by_name, which have different purposes. The Args and Returns sections further clarify what it does.

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?

No guidance is given on when to use this tool versus alternatives. The sibling list includes many permission-related tools (e.g., user_setup_standard_user, collection_update_collection_permissions), but the description does not explain why one would choose this tool over those, nor mention prerequisites or context like whether it replaces or appends permissions.

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

Deploy Server

Other Tools