Skip to main content
Glama
agent-next

polymarket-paper-trader

by agent-next

get_balance

Retrieve current paper-trading account balance, reserved cash, positions value, and profit/loss to monitor portfolio health.

Instructions

Get current account balance (cash, reserved/available cash), positions value, and P&L.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
accountNodefault

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.4.1

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It clearly indicates a read operation (via 'get'), but it does not disclose additional behavioral traits such as authentication requirements, error handling, or any side effects. For a simple read, this is adequate but minimal.

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, efficient sentence that front-loads the core action and lists the return components without redundancy. Every word 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 read tool with an output schema, the description covers the essential information about what is returned. However, it omits any mention of the optional 'account' parameter and does not address error conditions or prerequisites. Given the tool's low complexity, this is mostly complete but not fully.

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

Parameters2/5

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

The schema has 0% description coverage for the 'account' parameter, and the description does not mention this parameter at all. Since there is a parameter, the description should compensate for the lack of schema documentation, but it provides no context about what 'account' means or how to specify it.

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 tool's purpose: 'Get current account balance' and enumerates the specific components returned (cash, reserved/available cash, positions value, and P&L). It uses a specific verb and resource, making it distinct from siblings like portfolio or history.

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 when account balance information is needed, but it does not explicitly state when to use it versus alternatives like portfolio or history. No exclusions or alternative conditions are given.

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