Skip to main content
Glama
bcosta19

MCP Gestão de Tarefas

by bcosta19

criar_subtarefa

Create a technical subtask linked to an existing demand. When offline, the subtask is queued locally and sent later.

Instructions

Cria uma subtarefa técnica vinculada a uma demanda existente. A operação é bloqueada para projetos não identificados ou explicitamente ignorados. Se offline, armazena na fila local para posterior envio.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
tituloYesTítulo da subtarefa técnica a ser executada.
descricaoNoDescrição técnica ou detalhamento dos passos da subtarefa.
demanda_idYesID numérico da demanda ou identificador offline (client_id) gerado para uma demanda criada sem conexão.
data_limiteNoData limite de conclusão no formato YYYY-MM-DD.
diretorio_pathNoDiretório do projeto a validar para regras de contexto (default: diretório atual do MCP).
responsavel_idNoID do Colaborador responsável pela subtarefa.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the behavioral disclosure burden. It does a good job by revealing that the operation can be blocked for unqualified projects and that offline calls are stored in a local queue for later submission. It does not mention auth requirements or result handling, but the core behavioral traits are disclosed.

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?

The description is three well-structured sentences, each delivering a distinct piece of information: what the tool does, when it is blocked, and how offline behavior works. There is no filler or unnecessary 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?

Given the absence of annotations and output schema, the description gives essential context about offline behavior and blocking, which improves call accuracy. It could additionally clarify what the agent receives after submission, especially in offline mode, but the current description still covers the main operational context.

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?

Schema description coverage is 100%, so the input schema already documents all six parameters. The tool description adds no additional parameter-level meaning beyond what the schema provides, which meets the baseline but does not go further.

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 uses a specific verb ('Cria') and clearly defines the resource as a technical subtask linked to an existing demand. This differentiates it from sibling tools like criar_demanda, atualizar_subtarefa, and concluir_subtarefas without requiring the agent to inspect schemas.

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?

The text establishes that the subtask must be tied to an existing demand ('demanda existente'), making it clear this is not for new demands, and it describes blocking conditions for unidentified/ignored projects. It does not explicitly name alternative sibling tools, but the demand-vs-subtask distinction is evident.

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