Skip to main content
Glama
myst3k

wasabi-wacm-connect-mcp

by myst3k

get_sub_account

Read-only

Retrieve a specific sub-account by ID to view its storage, optional access keys, and parent account hierarchy.

Instructions

Get a specific Sub-Account by ID with detailed information including storage, keys (if requested), and parent account hierarchy.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
includeKeysNoInclude access/secret keys in response. WARNING: Returns sensitive credentials. Defaults to false.
subAccountIdYesSub-Account ID
includeDeletedNoInclude if sub-account is deleted

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With readOnlyHint=true annotation, the safety profile is already established. The description adds value by disclosing that response includes storage, keys only when requested, and parent hierarchy. It does not contradict the annotation and provides useful behavioral context beyond the schema.

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?

A single, focused sentence that front-loads the core purpose and immediately mentions key response details. There is no wasted wording or redundant restatement of the tool name.

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?

The description covers the key response aspects and the conditions for including keys. Given that all parameters are documented in the schema and the tool is a read-only single-record fetch, the description is sufficiently complete for an agent to call it correctly.

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%, so the parameters are already well-documented in the schema. The description adds marginal context by mentioning keys when requested, but does not provide substantial meaning beyond what the input schema already states.

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 clearly states the verb 'Get' and specific resource 'Sub-Account by ID', and adds detail about storage, optional keys, and parent account hierarchy. This makes it easy to distinguish from sibling list tools like list_sub_accounts.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies a single-item lookup by ID, which distinguishes it from list_sub_accounts. It does not explicitly state when to prefer this tool over alternatives, but the context is clear enough for an agent to infer the appropriate use case.

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