Account balance and rates
accountBalance in USD, the per-GPU hourly rate table, and the key id of the API key in use.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
accountBalance in USD, the per-GPU hourly rate table, and the key id of the API key in use.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Changes observed during successful MCP inspections. Dates show when Glama detected each change.
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnly, idempotent, and non-destructive behavior. The description adds value by listing the exact data returned (balance, rate table, key id), which is sufficient given the read-only nature.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, concise sentence that directly states the tool's output without any redundant or extraneous information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given there is no input schema, no output schema, and the tool is a simple read operation, the description adequately covers what the tool does and what it returns. It could optionally detail the rate table format, but that is not necessary for basic usage.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
There are zero parameters in the input schema, so the baseline is 4. The description correctly implies no inputs are needed, and no further parameter explanation is required.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool provides balance, per-GPU hourly rates, and API key id. It is distinct from sibling tools that handle job operations (create, list, etc.), making its purpose unambiguous.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The tool is a read-only account info operation with no parameters, so usage is straightforward. It doesn't explicitly state when to use it, but its purpose is self-evident and no alternative account-related tools exist among the siblings.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Add one secure layer between your agents and this server.
Each tool serves a distinct purpose: account and capabilities cover account/configuration info, while create_job, start_job, and submit_job represent clearly differentiated job submission stages. Monitoring, results, cancellation, and deletion tools are all non-overlapping.
Tool names mostly follow a clear snake_case verb_noun pattern (cancel_job, create_job, delete_results, list_jobs, start_job, submit_job). A few noun-only names like account, capabilities, job_status, and job_results deviate slightly, but the pattern remains recognizable and predictable.
With 12 tools, the set covers the full job lifecycle without being bloated. Each tool maps to a meaningful operation, and the count is well within the typical 3-15 range for a domain-specific server.
The tool surface covers the necessary workflow: checking account/capabilities, submitting and starting jobs, monitoring status/logs, retrieving results, canceling jobs, and deleting results. No essential operation for the stated GPU job management domain appears missing.