Skip to main content
Glama

openfinance_force_sync

Forces the bank to re-sync one or more connections NOW and WAITS for it to finish (PATCH /items/:id, then polls until the item stops updating, up to ~60s). Use this when a balance or transaction list looks stale: a connection can read UPDATED yet be hours old, and this pulls fresh data WITHOUT disconnecting/reconnecting. Pass items as an array of selectors (item_id, connector_id, connector_name, or the user-set custom_label nickname); OMIT items to sync ALL linked banks. Returns { results, errors }; each result has the final status, executionStatus, lastUpdatedAt (advances when data is refreshed), and synced (true = fresh data is ready). needs_action (e.g. MFA_REINTERACTION / LOGIN_ERROR / WAITING_USER_INPUT) means the user must re-authenticate — those results include a reconnect_url that opens the widget in UPDATE mode for that exact connection (user enters credentials / MFA token, data refreshes in place, no slot consumed, no disconnect needed). timed_out: true means the sync is still running — re-check with openfinance_get_item_status. Set wait: false for fire-and-forget (returns immediately while UPDATING).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
waitNo
itemsNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Added
  2. Removed
  3. Added
  4. Removed
  5. Added
  6. Removed
  7. Added
  8. Removed
  9. Added
  10. Removed
  11. First observed

TDQS

A4.6/5.0
Behavior5/5

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

Annotations show readOnlyHint=false (mutation) and destructiveHint=false. Description adds extensive behavioral details: it waits up to ~60s, polls, returns results with specific fields like status, executionStatus, lastUpdatedAt, synced, needs_action, reconnect_url, and timed_out. No contradictions with annotations.

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 relatively long but well-structured, starting with the main action and then explaining details in separate sentences. Each sentence adds value, though some information (e.g., the reconnect_url section) could be slightly condensed without losing clarity.

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?

No output schema, but description thoroughly explains return object (results, errors, fields), handles error conditions (timed_out, needs_action), and provides reconnection guidance. Given the tool's complexity and two parameters, the description covers all necessary context for correct usage.

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 description must explain parameters. It covers both parameters: 'items' as an array of selectors (with example types) and that omitting it syncs all connections; 'wait' as boolean with implied default (true) and explains behavior for false. Adds meaning beyond schema, but could explicitly state default for wait.

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?

Clearly states it forces a bank to re-sync connections and waits for completion. Uses specific verb 'forces' and resource 'connections'. Distinguishes from siblings by mentioning it pulls fresh data without disconnecting/reconnecting, and specifies the use case (stale balances/transactions).

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?

Explicitly says when to use (stale data) and when to set wait: false (fire-and-forget). Also mentions alternative action for timed_out (re-check with openfinance_get_item_status) and explains the needs_action scenario. Lacks explicit when-not-to-use or comparison to other sibling tools, but still provides strong context.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.9/5.0
Disambiguation3/5

The openfinance_* tools are mostly separated by resource and verb, but there are several borderline pairs: list_transactions vs list_transactions_by_item, get_item_status vs list_connections vs provider_status, and list_accounts vs get_account_balance. The marketplace tool also bundles search/describe/invoke/install/report_bug/prompt-library actions, which overlaps with standalone report_bug and adds confusion.

Naming Consistency3/5

The openfinance_* family follows a clean get_/ list_/ update_ pattern, but the platform tools mix bare verbs like connect and authenticate with noun-style names like marketplace and toolkit_info. This split is readable but not a single consistent convention.

Tool Count3/5

25 tools sits at the upper end of the 16-25 'heavy' band. The Open Finance domain genuinely has many resources and the openfinance_* tools mostly earn their place, but the generic platform tools plus the multi-purpose marketplace make the set feel larger than its core purpose requires.

Completeness4/5

The Open Finance lifecycle is well covered: connection search/link/status/sync/disconnect, accounts/balances/detail, transactions with categorization, credit-card bills with derived payment status, loans, and investments with transaction history. Minor gaps exist, such as no standalone connect/install tools, but those flows are handled via URLs and embedded marketplace actions rather than missing entirely.