Skip to main content
Glama

iClips

iclips_job_tasks_write_create

Cria ou atualiza uma tarefa manual dentro de um job existente no iClips. Ações:

  • create: exige job_id e data.titulo (até 150 caracteres). Opcionais no data: descricao, inicioDate, fimDate (AAAA-MM-DD), prioridade (1, 2 ou 3) e ordemExibicao. Devolve idTarefaJob, que é o id usado no update.

  • update: exige job_id e task_id (o idTarefaJob). Todo campo do data é opcional, mande só o que muda. Os nomes de campo da ESCRITA (titulo, inicioDate, fimDate) são diferentes dos que o iclips_projects_extract devolve na LEITURA (tituloAtividade, inicioPlanejado, fimPlanejado).

[Flattened action: create]

Bulk support: accepts job_ids, task_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
dataYes
job_idYes
accountNo
job_idsNo
task_idNo
task_idsNo

Schema Changelog

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

  1. First observed

TDQS

A3.8/5.0
Behavior4/5

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

The description adds useful context beyond annotations: it explains that the tool writes and returns idTarefaJob for later updates, and warns that write field names differ from read field names returned by iclips_projects_extract. This kind of behavioral nuance is not captured by readOnlyHint or destructiveHint.

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 well-organized with action blocks, optionals, return-value notes, and a field-mapping warning. It is compact given the amount of detail, though it is slightly redundant by documenting both create and update in a create-named tool.

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

Completeness3/5

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

It covers required fields, optional fields, date/priority constraints, the returned ID, and bulk support. Still, it omits how the data payload should actually be serialized for the string data parameter, leaves account unexplained, and does not fully resolve whether update is really available in this tool. With no output schema, response details are also missing.

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?

With 0% schema coverage, the description compensates by listing data fields like titulo, descricao, inicioDate, fimDate, prioridade, and ordemExibicao with constraints. However, there is a notable mismatch: the schema types data as a string but the description treats it as an object with fields, and the account parameter is not explained.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states it creates or updates a manual task inside an existing iClips job, naming the verb and resource clearly. However, it covers both create and update actions while the tool name and 'Flattened action: create' signal create-only, creating some ambiguity with sibling iclips_job_tasks_write_update.

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?

It gives explicit requirements for each action: create requires job_id and data.titulo, update requires task_id, and optional fields are listed. It does not mention the sibling alternative or specify when to prefer this tool over iclips_job_tasks_write_update, but the per-action guidance is concrete and actionable.

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.2/5.0
Disambiguation2/5

Many tools are near-duplicates, such as iclips_financial_entries_get/list, iclips_pieces_get/list, iclips_pieces_write_create/update/checklist, and iclips_workflow_templates_get/list, all sharing essentially the same description. authenticate and connect also overlap on session/connection status, so an agent must rely on brittle naming conventions rather than clear semantic boundaries.

Naming Consistency2/5

The iClips tools mostly follow iclips_<resource>_<action>, but the server mixes noun-only names like iclips_financial_accounts and marketplace, camelCase platform names like toolkit_info and show_version, and artificial get/list flattened duplicates. The pattern is only predictable within a subset of the tool list, not across the entire server.

Tool Count2/5

At 30 tools, the set is over-inflated for its actual scope: most are flattened get/list or write-action variants of roughly a dozen underlying iClips operations, plus six unrelated platform utilities. The domain could be cleanly served in about half this many tools without losing functionality.

Completeness2/5

Jobs and pieces have reasonable CRUD coverage, but there is no client/group or destination master lookup even though clientId is required to create a job and destination_id filters financial entries. Job pieces and tasks also lack delete operations, and financial categories are not enumerable, leaving noticeable dead ends for common workflows.