Skip to main content
Glama

Crefisa MCP

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. First observed

TDQS

A5/5.0
Behavior5/5

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

Disclosure goes beyond annotations: explains the sync process (PATCH + polling), side effects (updates lastUpdatedAt, no disconnect needed), and all possible return fields (status, executionStatus, synced, needs_action, reconnect_url, timed_out). Clear about wait flag behavior and timeout.

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?

Every sentence adds value with no redundancy. Front-loaded with the core action and key parameters. Uses clear formatting (bold for emphasis, structured lists for return values) to improve readability without wordiness.

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?

Given no output schema and moderate complexity, the description is fully complete. Explains return structure (results, errors), all status fields, error handling (needs_action with reconnect_url), timeout fallback (timed_out, re-check), and the fire-and-forget mode. No gaps remain for agent decision-making.

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?

Despite 0% schema description coverage, the description fully explains both parameters. 'items' is detailed as an array of selectors (item_id, connector_id, connector_name, custom_label) with the option to omit for all connections. 'wait' is explained as boolean with default inferred as true and alternative false behavior. Adds meaning that the bare schema lacks.

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 forces a resync of bank connections and waits for completion. It specifies the HTTP method (PATCH), polling behavior, and timeout (~60s). The verb 'force_sync' is well-defined and distinguishes from sibling tools like openfinance_get_item_status (status check) and openfinance_list_connections (listing).

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?

Explicitly advises using when balances/transactions are stale. Explains how to sync all connections (omit items) vs specific ones (pass selectors). Provides actionable guidance for special cases: set wait:false for fire-and-forget, use reconnect_url for authentication issues, and re-check with openfinance_get_item_status if timed_out.

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

A4/5.0
Disambiguation3/5

Most open_-finance tools are clearly bound to a resource+action, but several pairs require careful reading: list_transactions vs list_transactions_by_item, get_iate_status vs get_provider_status, and connect vs list_connections. The marketplace tool is also a single heavily overloaded tool that bundles search/describe/invoke/install and a prompt library, which blurs its boundary.

Naming Consistency4/5

The Open Finance tools follow openfinance_verb_noun consistently, and the top-level tools are all snake_case, so there is no wild con convention mixing. Deviations exist in generic tools like marketplace/toolki_i/nfo and in non-verb patterns like accent_status, but overall the naming is readable and predictable.

Tool Count3/5

At 25 tools the server sits at the upper edge of what is comfortably scoped; the many list/get/status endpoints are justified by the Open Finance domain, but the extra marketplace and admin utilities make it feel broader than a single-purpose sovereign. It is not abusive, but it is definitely on the heavy side.

Completeness4/5

The Open Finance access covers accounts, balances, transactions, credit card bills, investment, loans, connections, diagnostics, force-sync, and transaction recategorization. Missing operations are mostly intentional autentications/connection widget hand-offs (add_connection_url, reconnect_url), so the set can still support common workflows without dead ends.