Skip to main content
Glama
fieldjoshua

Upwork MCP Server

by fieldjoshua

Get Connects Balance

upwork_get_connects
Read-onlyIdempotent

Check your Upwork Connects balance and recent usage history. Choose markdown or JSON output.

Instructions

Get your Connects balance.

View your current Connects balance and usage history.

Args:

  • response_format ('markdown' | 'json'): Output format (default: 'markdown')

Returns: Current Connects balance and recent usage.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
response_formatNoOutput format: 'markdown' for human-readable or 'json' for machine-readablemarkdown

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds that it returns 'recent usage' in addition to the balance, which is useful but not a rich behavioral disclosure beyond what annotations already provide.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is short and front-loaded with the core purpose. 'Get your Connects balance' is slightly redundant with the title, but the additional usage-history detail, args, and returns sections are all concise and useful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read-only tool with zero required parameters and no output schema, the description is complete enough: it states what the tool returns (current balance and recent usage) and the only optional parameter. Annotations cover safety, and no further context is needed for correct invocation.

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 schema already documents response_format with its enum and default. The description only repeats the default value and adds no meaning beyond the schema, so the baseline of 3 applies.

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 ('Get') and resource ('Connects balance'), and adds that it also shows usage history. This clearly distinguishes it from sibling tools like get_earnings or get_transactions because 'Connects' is a distinct Upwork resource.

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 makes clear this is for viewing the current Connects balance and usage history, so an agent can infer when to call it. It does not explicitly name alternatives or exclusions, but the context is unambiguous given the tool name and sibling list.

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