Skip to main content
Glama
WYRE-AI

Slide MCP Server

by WYRE-AI

slide_get_account

Retrieves a single Slide account by ID to provide read-only visibility into backup/BDR resources, excluding secret-bearing fields and mutating operations.

Instructions

Get a single Slide account by ID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
account_idYesAccount ID.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

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 of behavioral disclosure. It only says 'Get', which implies a read operation, but doesn't disclose return format, error behavior, or any side effects. For a simple read tool this is a modest gap, but with zero annotation coverage the description should say more.

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?

One short sentence that is front-loaded with the verb and resource. No wasted words.

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 single-parameter read tool, the description is mostly adequate. However, with no output schema and no annotations, an agent might benefit from knowing what the response contains or whether the account is a client, user, or billing account. The sibling list shows many account-related tools, so a bit more context would help.

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 only parameter, account_id, is described as 'Account ID.' The description adds no additional meaning beyond the schema, 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 states a specific verb ('Get') and resource ('a single Slide account by ID'), which clearly distinguishes it from list operations like slide_list_accounts. It doesn't explicitly name a sibling, but the resource and scope are 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: use this when you need a single account by ID, versus slide_list_accounts for multiple accounts. However, it doesn't explicitly state when not to use it or mention alternatives, leaving the agent to infer from the sibling names.

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