Skip to main content
Glama
psonhoang

schwab-mcp

by psonhoang

list_accounts

Retrieve all linked Schwab accounts with balances. Optionally include current positions for each account.

Instructions

List every Schwab account linked to this API app, with balances.

Args: include_positions: If True, each account also includes its current positions (symbol, quantity, market value, cost basis, etc.) in addition to balances.

Returns: A list of per-account detail objects, one per linked account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
include_positionsNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the burden of behavioral disclosure. It clearly states the tool lists accounts and optionally includes positions, and it describes the return shape. However, it does not disclose potential latency, pagination, auth requirements, or whether balances are real-time or delayed.

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 compact and front-loaded: the core purpose is in the first sentence, and the parameter explanation is concise. Every sentence earns its place.

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 simple list tool with one optional boolean parameter and an output schema, the description is largely complete. It explains the return value and the parameter. Minor gaps: no mention of pagination or data freshness, but these are not critical for a list-accounts tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 0%, so the description must compensate. It does: it explains include_positions with concrete examples of what positions include (symbol, quantity, market value, cost basis). This adds real meaning beyond the bare boolean schema.

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 a specific verb ('List') and resource ('every Schwab account linked to this API app') and adds the balance detail, which distinguishes it from get_account (single account) and other siblings. It is clear and 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 this is the tool for listing all linked accounts, and the include_positions parameter clarifies an optional behavior. However, it does not explicitly state when to prefer this over get_account or other alternatives, nor does it mention any exclusions or prerequisites.

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