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. Added
  12. Removed
  13. Added
  14. Removed
  15. Added
  16. Removed
  17. Added
  18. Removed
  19. First observed

TDQS

A4.9/5.0
Behavior5/5

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

Annotations indicate non-readonly, non-destructive. The description adds: waits up to ~60s, polls, returns detailed status (executionStatus, lastUpdatedAt, synced). It explains needs_action with reconnect_url and timed_out behavior, and confirms no disconnect/reconnect. No contradictions.

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 front-loaded with the key action and use case. It structures parameter details, return values, and edge cases logically. Slightly verbose around needs_action but remains efficient and well-organized.

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?

Covers use case, parameter options, return format (results, errors with status fields), error states (needs_action, timed_out), and follow-up actions. Despite no output schema, the description provides adequate detail for correct invocation and handling.

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

Parameters5/5

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

Schema has 0% description coverage. The description compensates fully: explains items accepts various selectors (item_id, connector_id, etc.) and that omitting it syncs all. Describes wait as boolean for synchronous vs. fire-and-forget. Adds meaningful context beyond 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 clearly states the verb 'forces re-sync' and the resource 'connections'. It specifies synchronous waiting and contrasts with sibling tools like openfinance_get_item_status. The purpose is unambiguous and distinct.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicit when-to-use guidance: 'when a balance or transaction list looks stale'. It explains when not to use (no disconnect needed) and provides alternatives for timeout cases (openfinance_get_item_status). Parameter wait: false for fire-and-forget is also clarified.

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_* cluster is mostly well separated, but openfinance_list_transactions and openfinance_list_transactions_by_item overlap, and several platform tools (authenticate, connect, marketplace, toolkit_info) all touch status/auth/connection concepts. Long descriptions mitigate but don't eliminate misselection risk.

Naming Consistency4/5

The 18 Open Finance tools follow a consistent openfinance_verb_noun convention; only the handful of platform tools deviate with bare verbs/nouns. The pattern is predictable within each group.

Tool Count3/5

25 tools sits at the heavy end of the range; the Open Finance data surface justifies a large set, but the extra marketplace/status tools add breadth. It's still navigable though.

Completeness4/5

The Open Finance surface covers connections, accounts, balances, transactions, credit-card bills, loans, investments, category correction, sync, and provider health. Missing direct connection creation and some write operations, but connect_urls and reconnect/force-sync close most gaps.