Skip to main content
Glama

Organizze

organizze_mass_create_transactions

Cria VÁRIAS transações em lote (máx. 100) a partir de uma lista de objetos. Use em vez de create_transaction repetido. Cada linha no array deve ser única (descrição+valor+data+conta) — dedupe no payload antes de enviar. NÃO use para importar CSV/OFX com snapshot canônico — nesse caso o app redireciona para plan_tabular_import/apply_tabular_import (error_code redirect_to_tabular); no MCP, peça ao usuário importar pelo app ou envie linhas sem fingerprint de anexo. Prefira NOMES de conta/categoria. Executa em uma chamada (sem confirmação interativa no MCP).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
transactionsYes
idempotency_keyNo

Schema Changelog

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

  1. First observed

TDQS

A4.8/5.0
Behavior5/5

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

Annotations are minimal (readOnlyHint=false, idempotentHint=false, destructiveHint=false) and consistent with the description, so there is no contradiction. The description adds substantial behavioral context beyond those hints: the 100-item cap, single-call execution with no interactive confirmation, the mandatory uniqueness/dedupe constraint, and the redirect behavior triggered by attachment fingerprints on canonical imports.

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?

Purpose and scope are front-loaded, and every clause earns its place: batch limit, alternative tool, dedupe rule, exclusion case with error code, naming preference, and execution model. It is dense but contains no filler or repetition.

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

Completeness4/5

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

For a complex batch tool with no output schema and 0% schema coverage, the description covers the cap, dedupe, exclusions, and execution model — most of what an agent needs to call it. The notable gaps are the unexplained idempotency_key parameter and the lack of any statement about return values or partial-failure behavior for individual rows.

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 description coverage is 0%, so the description carries the full burden, and it does add real meaning: the uniqueness constraint on description+amount+date+account, the preference for account/category NAMES, and the 100-item array cap. However, it leaves idempotency_key and several item fields (times, periodicity, recurring, observation) without any semantic guidance, so the compensation is strong but incomplete.

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 opens with a precise verb-resource-scope statement: 'Cria VÁRIAS transações em lote (máx. 100) a partir de uma lista de objetos' — batch-creating transactions from an object list with a hard cap. It explicitly differentiates from the sibling organizze_create_transaction by instructing the agent to use this instead of repeated single calls, so there is no ambiguity about which sibling to select.

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?

Usage guidance is explicit and bidirectional: use it instead of repeated create_transaction, and do NOT use it for CSV/OFX canonical-snapshot imports, naming the exact redirection path (plan_tabular_import/apply_tabular_import with error_code redirect_to_tabular) and the MCP fallback behavior. It also states a payload precondition (dedupe before sending). No inference is required.

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

B3.1/5.0
Disambiguation3/5

Most tools target distinct resource+action pairs, but the reporting/query side is crowded: get_balances, transactions_list_results, get_financial_summary, get_monthly_overview, and the category/tag reports overlap heavily. Long descriptions disambiguate bases and use cases, but an agent must read carefully to avoid picking the wrong report or list variant.

Naming Consistency4/5

Organizze tools overwhelmingly follow a consistent organizze_<verb>_<noun> snake_case pattern with create_, list_, get_, update_, and delete_ prefixes. Deviations like transactions_list_results, the mass_* versus update_transactions_* bulk variants, and unprefixed platform tools keep it from being perfect.

Tool Count1/5

68 tools is far beyond the practical agent surface and includes many near-variant list/report/mass tools plus six unrelated platform-level tools. Even though the finance domain is broad, this count creates an extreme mismatch for efficient tool selection.

Completeness3/5

The core finance lifecycle is well covered: accounts, cards, categories, budgets, transactions, invoices, transfers, and reports all have substantial CRUD or equivalent support. However, some referenced operations are missing entirely, such as delete_recurrence, clear_latest_imports, and remove_from_latest_imports, and transfers/recurrences lack full lifecycle coverage.