Skip to main content
Glama
bcosta19

MCP Gestão de Tarefas

by bcosta19

MCP Task Management

Standalone server based on the Model Context Protocol (MCP) to integrate development agents with the Task Management system.

Requirements

  • Node.js 22.5 or higher;

  • access to the Task Management server;

  • valid credentials or an authentication token.

Related MCP server: Project Manager MCP

Installation

npm install
npm run build

Configuration and authentication

The assistant configures the server URL and authentication locally. The URL can be provided via the GESTAO_TAREFAS_API_URL variable, the --api-url argument, or during the assistant's execution.

npm run setup

When the URL is not configured, the assistant will prompt:

URL do Gestão de Tarefas:

It is also possible to provide access data via arguments:

npm run setup -- \
  --api-url=https://seu-servidor-de-gestao.exemplo \
  --email=seu.email@empresa.gov.br \
  --password=suasenha

To use an existing web session or token:

npm run setup -- --api-url=https://seu-servidor-de-gestao.exemplo --token=SEU_TOKEN

The assistant attempts to authenticate via a JSON endpoint and, if not available, uses the web form with CSRF. Credentials are not versioned. The session or token is saved in the local .env and in ~/.gestao-tarefas-mcp/config.json.

An existing web session or token can be provided to the assistant or configured in GESTAO_TAREFAS_API_TOKEN.

Environment variables

The .env.example file contains the reference configuration:

GESTAO_TAREFAS_API_URL=https://seu-servidor-de-gestao.exemplo
GESTAO_TAREFAS_API_TOKEN=cole_a_sessao_web_ou_token_aqui
OFFLINE_QUEUE_PATH=~/.gestao-tarefas-mcp/queue.sqlite
REQUEST_TIMEOUT_MS=5000
IGNORE_PREFEITURA=true
IGNORED_PROJECT_PATTERNS=prefeitura,pmsp,pref-,pm-,pm_

Do not place tokens, passwords, or cookies in versioned files.

Features

The server provides tools for:

  • detecting the current project and its link to the system;

  • listing projects, demands, and sprints;

  • creating demands and subtasks;

  • updating subtasks and querying demand details;

  • associating demands with sprints;

  • operating with an offline queue and syncing items later;

  • checking connectivity and authentication status.

Projects marked as external or belonging to the City Hall can be automatically ignored. This behavior is controlled by IGNORE_PREFEITURA, IGNORED_PROJECT_PATTERNS, and the .gestaotarefas.json file.

Execution

The server uses stdio and must be run from the build:

npm run build
node dist/index.js

Example configuration for an MCP client:

{
  "mcpServers": {
    "gestao-tarefas": {
      "command": "node",
      "args": ["/caminho/para/mcp-gestao-tarefas/dist/index.js"],
      "env": {
        "GESTAO_TAREFAS_API_URL": "https://seu-servidor-de-gestao.exemplo",
        "GESTAO_TAREFAS_API_TOKEN": "CONFIGURADO_LOCALMENTE",
        "OFFLINE_QUEUE_PATH": "~/.gestao-tarefas-mcp/queue.sqlite",
        "IGNORE_PREFEITURA": "true"
      }
    }
  }
}

After changing the code, run npm run build and restart the MCP client.

The component and flow overview is in ARCHITECTURE.md.

Development agent configuration

An agent with workspace access can configure the server following this sequence:

Configure o servidor MCP deste projeto.

1. Leia o README.md e identifique o cliente MCP em uso.
2. Use o diretório atual como diretório do projeto.
3. Instale as dependências apenas se necessário.
4. Execute npm run build.
5. Registre o servidor usando node dist/index.js e preserve as demais
   configurações existentes do cliente.
6. Solicite a URL do servidor e a autenticação caso ainda não estejam
   configuradas. Não exiba nem grave tokens ou senhas no chat.
7. Inicie o servidor ou informe que o cliente precisa ser reiniciado.

The agent must ask for confirmation before overwriting existing configurations or installing dependencies. If it does not have permission to change the client configuration, it must provide instructions for manual application.

Project configuration

The .gestaotarefas.json file must be created at the root of the repository that will be integrated with Task Management, at the same level as the .git directory:

meu-projeto/
├── .git/
├── .gestaotarefas.json
├── package.json
└── src/

The MCP looks for this file starting from the current directory and continues going up through parent folders. Thus, a configuration placed in a common folder can also be shared by multiple repositories. The alternative name .gestao-tarefas.json is also accepted.

To link the repository to a project, create meu-projeto/.gestaotarefas.json with the corresponding identifier:

{
  "projeto_id": 1,
  "nome": "Gestão de Tarefas",
  "departamento": "TI"
}

To disable the MCP only in this repository, use the same file:

{
  "nome": "Projeto externo",
  "tipo": "externo",
  "ignorado": true,
  "motivo": "Projeto fora do escopo"
}

Tests

npm test

The suite covers authentication, context detection, bypass of ignored projects, HTTP communication, offline queue, synchronization, and MCP tools.

Available Tools

14 tools
associar_demanda_sprintA

Associa uma demanda existente a uma sprint. A API rejeita a operação se a demanda já estiver em outra sprint.

ParametersJSON Schema
NameRequiredDescriptionDefault
sprint_idYesID da sprint de destino.
demanda_idYesID da demanda que será associada à sprint.

TDQS

A3.8/5.0
Behavior3/5

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

With no annotations, the description carries the full burden of behavioral disclosure. It reveals a critical constraint (rejection if the demand is already in another sprint), which is valuable. However, it does not mention other side effects, permissions, or success/failure response details, leaving gaps for a mutation tool.

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?

Two concise sentences front-load the purpose and key constraint with no filler or redundant phrasing. Every word contributes to the meaning, making it highly efficient.

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 simple association tool with two parameters and no output schema, the description covers the essential purpose and a critical rejection rule. It lacks details on return values or error codes, but the functionality is straightforward, and the description is sufficiently complete for an agent to call it correctly.

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?

The input schema already provides descriptions for both parameters (sprint_id and demanda_id) with 100% coverage. The description adds no extra semantic detail beyond the schema, so it meets the baseline for high coverage but does not enrich parameter understanding.

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's function: associating an existing demand to a sprint, using a specific verb (Associa) and a specific resource pair (demanda, sprint). It is distinct from all sibling tools, which operate on creating demands, listing sprints, etc., making the purpose unambiguous.

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

Usage Guidelines3/5

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

The description implies its usage (associate a demand to a sprint) but does not explicitly compare it to alternatives or state when not to use it. Siblings like criar_demanda or listar_sprints are not referenced, so an agent receives no explicit guidance on selecting this tool over others.

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

atualizar_demandaA

Atualiza campos de uma demanda existente (projeto, título, descrição, prioridade, status, responsável, sprint, datas, classificação ITIL, estimativa, solicitante).

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoNovo status da demanda.
tituloNoNovo título da demanda.
impactoNoNovo impacto: alto, medio ou baixo.
data_fimNoNova data de término no formato YYYY-MM-DD (vazio para limpar).
descricaoNoNova descrição da demanda em HTML rich text (<p>, listas, links). Texto simples é convertido automaticamente para HTML.
sprint_idNoNova Sprint da demanda.
demanda_idYesID da demanda a ser atualizada.
prioridadeNoNova prioridade da demanda: Alta, Média ou Baixa.
projeto_idYesID do projeto da demanda. Obrigatório no Gestão de Tarefas.
data_inicioNoNova data de início no formato YYYY-MM-DD.
data_limiteNoNova data limite no formato YYYY-MM-DD.
solicitanteNoNovo solicitante da demanda.
responsavel_idNoNovo ID do Colaborador responsável.
tipo_atendimentoNoTipo de atendimento ITIL (ex: desenvolvimento, melhoria, correcao).
estimativa_pontosNoNova estimativa de esforço em pontos de história.
classificacao_itilNoClassificação ITIL: incidente ou requisicao.

TDQS

A3.7/5.0
Behavior2/5

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

Não há annotations, então a descrição precisa carregar o peso de explicar o comportamento da operação. 'Atualiza campos de uma demanda existente' comunica mutação, mas não informa se a atualização é parcial, quais efeitos colaterais existem, se requer permissões especiais ou o que é retornado. Esse nível de detalhe é insuficiente para uma ferramenta de escrita com 16 parâmetros.

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?

A descrição é uma frase única, direta e front-loaded com a ação principal. O parênteses funciona como um overview útil sem repetir o schema inteiro. Não há desperdício de palavras.

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?

Para uma ferramenta com 16 parâmetros e sem saída schema, a descrição é funcional mas não completa: não diz se a atualização é parcial, como a API responde após a atualização, nem se há validações especiais entre campos como status e datas. O schema cobre os parâmetros, mas o contexto comportamental geral fica em aberto.

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?

O schema já cobre 100% dos parâmetros com descrições individuais, então a linha de base é 3. A descrição apenas resume os campos no parênteses, sem adicionar significado novo como relações entre parâmetros ou exemplos de formatação.

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?

A descrição usa o verbo específico 'Atualiza' com o recurso claro 'demanda existente' e ainda lista os campos editáveis, o que permite distinguir imediatamente de criar_demanda ou atualizar_subtarefa. Não há ambiguidade sobre a operação realizada.

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?

A expressão 'demanda existente' deixa claro que o uso é para atualização e não para criação, diferenciando-a de criar_demanda. Porém, não há exclusões explícitas ou orientação sobre quando preferir outras ferramentas, como atualizar_subtarefa.

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

atualizar_subtarefaC

Atualiza campos de uma subtarefa (título, descrição, status ou data limite) ou atualiza múltiplos IDs em lote.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoNovo status da subtarefa.
tituloNoNovo título da subtarefa.
descricaoNoNova descrição da subtarefa.
data_limiteNoNova data limite YYYY-MM-DD.
subtarefa_idNoID numérico da subtarefa ou lista de IDs a atualizar.
subtarefa_idsNoLista de IDs de subtarefas a serem atualizadas em lote.

TDQS

C2.9/5.0
Behavior2/5

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

Não há annotations, então a descrição deveria cobrir mais do comportamento. Ela indica que é uma operação de mutação, mas não explica efeitos de atualização em lote, falhas parciais, permissões necessárias ou se a operação substitui preserva campos não informados.

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?

A frase é compacta e informativa, listando os campos alteráveis e o modo lote sem conteúdo irrelevante. É um pouco redundante ao repetir 'subtarefa', mas ainda está bem estruturada.

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?

Para uma operação de mutação sem annotations e sem output schema, a descrição é suficiente para indicar o que atualiza, mas não diz qual resposta esperar, nem alerta que nenhum parâmetro é obrigatório no schema e que um ID precisa estar presente na prática.

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?

A cobertura do schema é 100%, portanto os nomes e descrições dos parâmetros já fornecem o significado dos campos. A descrição da tool apenas repete os campos e o suporte a lote, sem resolver a ambiguidade entre 'subtarefa_id' e 'subtarefa_ids'.

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?

A descrição usa um verbo específico (atualizar), nomeia o recurso (subtarefa) e enumera os campos alteráveis, além de indicar suporte a lote. Ela é clara, mas não diferencia explicitamente a sobreposição com a sibling 'concluir_subtarefas', que também pode mudar status.

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

Usage Guidelines2/5

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

A descrição informa o que o tool faz, mas não diz quando usá-lo em vez de alternativas, nem menciona pré-requisitos ou cenários apropriados. Não há orientação sobre quando preferir 'concluir_subtarefas' para alterar status para 'concluida'.

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

concluir_subtarefasA

Conclui ou altera o status de múltiplas subtarefas em uma única operação (passando uma lista de subtarefa_ids ou o demanda_id para concluir todas as pendentes daquela demanda).

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoStatus para o qual as subtarefas serão alteradas (default: concluida).concluida
demanda_idNoID da demanda para concluir todas as subtarefas pendentes vinculadas a ela de uma vez.
subtarefa_idsNoLista com os IDs numéricos das subtarefas a serem concluídas.

TDQS

A3.9/5.0
Behavior3/5

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

With no annotations, the description carries the full transparency burden and does disclose the core mutating behavior (changing statuses) and the bulk selection logic. But it does not clarify what happens with invalid/non-existent IDs, whether passing both selectors causes an error, or whether the operation is atomic; these gaps are representative of a mutation operation with zero annotation support.

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?

A single, front-loaded sentence captures the action and the two invocation modes without redundant text or filler. It is efficiently structured and easy to scan, earning full-conciseness score.

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?

The description covers the main invocation modes and is adequate for a simple batch-update tool, but it leaves ambiguity about whether at least one of `subtarefa_ids` or `demanda_id` is mandatory: both appear optional in the schema while the wording only implies them as alternatives. With no output schema and no annotations, a slightly more explicit note about required combinations or error behavior would complete the picture.

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 coverage is 100%, and each property already has a clear description. The tool description restates the relationship between `subtarefa_ids` and `demanda_id` but adding no richer semantics than the schema. The baseline of 3 applies because the schema does the heavy lifting.

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 concrete action ('Conclui ou altera o status') on a cleared resource ('múltiplas subtarefas') and emphasizes the batch/single-operation nature, which sets it apart from singular siblings like atualizar_subtarefa and criar_subtarefa. The tool's differentiated purpose is immediately understandable.

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 phrase 'em uma única operação' clearly signals when to use this tool over per-item updates, and the parenthesis explains the two main invocation styles (list of IDs or a demanda_id). However, it does not explicitly mention alternatives or state when not to use it, so it stops short of full explicit guidance.

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

criar_demandaA

Registra uma nova demanda no sistema de Gestão de Tarefas. A operação é bloqueada para projetos não identificados ou explicitamente ignorados. Se a rede estiver offline, salva na fila local.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoStatus inicial da demanda.para_fazer
tituloYesTítulo claro e objetivo da demanda.
impactoNoImpacto: alto, medio ou baixo.medio
descricaoYesDescrição detalhada da demanda em HTML rich text (<p>, listas, links). Texto simples é convertido automaticamente para HTML.
sprint_idNoID da Sprint corrente.
prioridadeYesPrioridade da demanda: Alta, Média ou Baixa.
projeto_idYesID do projeto no Gestão de Tarefas.
data_inicioNoData de início no formato YYYY-MM-DD (default: data atual).
data_limiteYesData limite no formato YYYY-MM-DD. Obrigatória no Gestão de Tarefas.
solicitanteNoNome ou identificação do solicitante da demanda.
diretorio_pathNoDiretório do projeto a validar para regras de contexto (default: diretório atual do MCP).
responsavel_idYesID do Colaborador responsável pela demanda. Obrigatório no Gestão de Tarefas.
tipo_atendimentoNoTipo de atendimento ITIL (ex: desenvolvimento, melhoria, correcao).
estimativa_pontosNoEstimativa de esforço em pontos de história.
classificacao_itilNoClassificação ITIL: incidente ou requisicao.

TDQS

A3.5/5.0
Behavior3/5

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

Não há annotations, então a descrição precisa transmitir o comportamento. Ela informa aspectos importantes: bloqueio para projetos não identificados e fila local quando a rede está offline. Porém, não fala sobre resposta/retorno, efeitos colaterais, autenticação ou o que acontece após a criação bem-sucedida.

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?

Resumo em duas frases objetivas e informativas. A primeira define o verbo e o recurso, e a segunda faz adiciona restrições e comportamento específico sem desperdício. Cada frase agrega valor.

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?

Para uma operação com 15 parâmetros e sem output schema, a descrição fornece as regras essenciais de comportamento, mas omite o que é retornado ao cliente e alguns cenários de erro além do projeto não identificado. Seria mais completo se descrevesse o retorno ou detalhes de criação bem-sucedida.

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?

O schema possui cobertura de 100%: todos os 15 parâmetros têm descrições. A descrição da ferramenta não adiciona semântica de parâmetros além do schema, o que define o baseline adequado de nota 3.

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?

O verbo 'Registra' com o objeto 'nova demanda' e o contexto 'sistema de Gestão de Tarefas' delimitam claramente o propósito de criação de uma demanda. Apesar de não citar explicitamente os irmãos (como criar_subtarefa ou atualizar_demanda), a descrição é específica o suficiente para diferenciar a operação.

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

Usage Guidelines3/5

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

A descrição indica condições de uso relevantes: a operação é bloqueada para projetos não identificados ou ignorados e, offline, salva na fila local. Contudo, não menciona alternativas (ex.: usar atualizar_demanda para demandas já existentes) nem exclui explicitamente cenários, deixando parte do contexto de uso implícito.

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

criar_subtarefaA

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.

ParametersJSON 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.

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.

listar_demandas_ativasB

Lista as demandas abertas ou em andamento de um projeto para análise de contexto e vínculo de subtarefas.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFiltrar por status (ex: para_fazer, fazendo, em_teste, etc.).
projeto_idYesID do projeto para filtrar as demandas.
responsavel_idNoID do colaborador para filtrar demandas atribuídas.

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden of disclosing behavior. It says 'lista' (lists) but does not explicitly state whether it's read-only, whether it filters by default (only open/in-progress) or returns all statuses when no filter is applied, or any pagination/sorting behavior. The mismatch between the description's 'abertas ou em andamento' and the schema's full status enum adds ambiguity.

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 a single sentence that conveys the core purpose and a contextual use case without any filler. It is concise and front-loaded with the main action.

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

Completeness2/5

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

Given that there is no output schema and no annotations, the description should provide more context about what the tool returns (e.g., list of demand objects, key fields) and any default behavior. The description mentions a use case but does not explain the response format, filtering defaults, or relationship to subtask linking. It is under-specified for a tool with 3 parameters and no structured output.

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 coverage is 100% with all three parameters (projeto_id, status, responsavel_id) having descriptions. The tool description adds no additional meaning beyond the schema, so it meets the baseline of 3 but does not exceed it.

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 clearly states it lists demands (verb+resource) for a project. It distinguishes itself from siblings like listar_projetos and obter_detalhes_demanda by focusing on the collection of demands. However, the phrase 'abertas ou em andamento' is slightly misleading since the schema's status enum includes all statuses (e.g., concluida, cancelada), so the description under-specifies the actual scope.

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

Usage Guidelines3/5

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

The description mentions a use case (análise de contexto e vínculo de subtarefas), which implies when to use it, but it does not explicitly state when NOT to use it or compare with alternative tools like obter_detalhes_demanda or obter_contexto_projeto. The guidance is implicit, not explicit.

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

listar_projetosC

Lista todos os projetos cadastrados no sistema de Gestão de Tarefas.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNoFiltrar projetos por status (ex: ativo, inativo).ativo

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations, the description must disclose behavior, but it is sparse. It claims to list 'all projects' while the schema has a status filter with a default of 'ativo', which contradicts the 'todos' wording—potentially misleading an agent about the default scope. It also fails to mention any side effects, permissions, pagination, or response format, which are critical for a tool without annotations.

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 a single, efficient sentence with no redundant words or filler. It front-loads the action and resource, making it easy to parse. Every word earns its place, and there is no bloat.

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

Completeness2/5

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

For a simple listing tool with an optional parameter and no output schema, the description is minimally functional but leaves gaps. The mismatch between 'todos' and the default 'ativo' filter is a notable incompleteness, and there is no guidance on expected output or pagination. While the simplicity reduces the burden, the description could benefit from clarifying the default behavior and any restrictions.

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?

The schema already fully describes the single parameter (status) with 100% coverage, giving the agent sufficient detail on filtering. The description adds no further semantic value, but since the schema covers it, the baseline of 3 is appropriate. However, it does not clarify the interaction between 'todos' and the default filter value.

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 clearly states the action (listing projects) and the resource (projects in the Task Management system). It uses a specific verb and resource, making the primary purpose unambiguous. However, it does not explicitly distinguish this tool from sibling tools like 'listar_demandas_ativas' or 'listar_sprints', though the resource type is distinct enough that confusion is unlikely.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It does not mention prerequisites, context, or exclusions (e.g., when to use 'obter_contexto_projeto' instead). No comparison with sibling tools is made, leaving the agent without direction on selection.

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

listar_sprintsA

Lista as sprints visíveis, em ordem da mais recente para a mais antiga.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses the visibility filter and sorting order, which are non-obvious behavioral details. It does not explicitly state that this is a read-only operation, but the verb 'Lista' strongly implies it.

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?

A single, front-loaded sentence that conveys the action, resource, scope, and order without any filler. Every word earns its place.

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?

For a zero-parameter, read-only listing tool with no output schema, this description is complete: it states what is listed, which items are included, and how they are ordered. No additional context is necessary for selection or invocation.

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?

The tool has 0 parameters, so the schema provides complete coverage and there is nothing for the description to add. The baseline of 4 applies because the description does not need to explain parameter semantics.

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 ('Lista') and resource ('sprints'), adds a meaningful scope ('visíveis'), and specifies ordering ('da mais recente para a mais antiga'). This clearly distinguishes it from sibling tools like listar_projetos and listar_demandas_ativas.

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

Usage Guidelines3/5

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

The purpose implies use when listing sprints, and the ordering/visibility details add context, but the description does not explicitly state when to prefer this tool over alternatives or provide any exclusions. It relies on the tool's name and obvious purpose.

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

obter_contexto_projetoA

Identifica o projeto ativo com base no diretório de trabalho atual (via .gestaotarefas.json ou Git), verificando se o MCP deve operar ou se está desativado para projetos externos ou não identificados.

ParametersJSON Schema
NameRequiredDescriptionDefault
diretorio_pathNoCaminho do diretório do projeto no qual o desenvolvedor está trabalhando (default: diretório atual).

TDQS

A4.2/5.0
Behavior4/5

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

No annotations are provided, so the description must carry the behavioral burden. It discloses the detection mechanism, indicates it is a discovery/identification operation, and describes the stateful disabled condition. A more explicit statement that the operation does not mutate anything and does not require special authentication would make it fully transparent.

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 a single sentence that front-loads the main purpose. Every phrase adds meaningful detail: the method, the current directory basis, and the disabled condition. There is no redundancy or filler.

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 tool with one optional parameter and no output schema, the description is mostly complete: it explains the input context, the source of project detection, and the potential disabled state. It could briefly state the shape of the returned value or the explicit outcome enum, but the absence is a minor gap.

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?

The input schema fully describes 'diretorio_path' with its default behavior. The description adds no additional parameter-specific details, either in the rest of the schema or in the description, so the baseline of 3 is appropriate.

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 states a specific action and resource: it identifies the active project based on the current working directory. It also conveys the prediction behavior and makes it easy to distinguish from sibling tools like 'listar_demandas_ativas' or 'criar_demanda', since this one is about context/discovery, not listing or mutation.

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 description gives clear context of when to use this tool: when the active project context is needed, determined from the current directory. It also mentions the disabling condition for external or unidentified projects, which functions as a when-not signal. It does not explicitly point to a direct sibling alternative, preventing a perfect score.

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

obter_detalhes_demandaB

Consulta os detalhes completos de uma demanda específica, incluindo suas subtarefas e responsáveis.

ParametersJSON Schema
NameRequiredDescriptionDefault
demanda_idYesID da demanda para consultar detalhes e subtarefas.

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries the full burden. It mentions inclusive details (subtarefas e responsáveis) but does not disclose any behavioral traits such as read-only nature, performance, or side effects. For a read-like operation, it lacks explicit safety confirmation.

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?

Single sentence, clear and front-loaded with the purpose. No wasted words, though it could arguably mention alternatives for conciseness's sake.

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?

Tool is moderately simple (1 parameter, no output schema). Description covers the purpose and inclusion of subtasks, but without annotations or additional behavioral info, completeness is adequate but not rich. No mention of return format or error conditions, but simple enough.

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 schema already explains the 'demanda_id' parameter. The description repeats that it consults a specific demand but adds no extra semantic detail beyond what the schema provides. Baseline of 3 applies.

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 clearly states that the tool retrieves full details of a specific demand, including subtasks and those responsible. It uses a specific verb ('consulta') and resource ('demanda específica'), and distinguishes from siblings like 'listar_demandas_ativas' by focusing on a single item.

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

Usage Guidelines3/5

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

The description implies usage for viewing details of one demand, but does not explicitly state when to use it versus alternatives like 'listar_demandas_ativas' (for listing) or 'obter_contexto_projeto' (for project context). No exclusions or alternatives are mentioned.

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

renovar_sessaoB

Renova a sessão de autenticação do Gestão de Tarefas utilizando as credenciais salvas ou novas credenciais informadas.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailNoE-mail de login (opcional se já configurado localmente).
passwordNoSenha de login (opcional se já configurada localmente).

TDQS

B3.1/5.0
Behavior2/5

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

No annotations are present, so the description carries the full burden of behavioral disclosure. It reveals that credentials can come from saved storage or from provided parameters, but it fails to mention side effects such as invalidating the current session, what happens if no saved credentials exist, or how failures are reported.

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 a single sentence that front-loads the action and explains the credential source in a compact, readable way. There is no filler or unnecessary detail.

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?

This is a fairly simple tool with only two optional parameters, and the description captures the essential operation. However, since there is no output schema and no annotation coverage, the description could have mentioned observable behavior, such as silent renewal, session invalidation, or authentication error behavior, to be fully self-contained.

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 schema already documents email and password as optional if credentials are locally configured. The description adds little semantic value beyond restating that saved or new credentials are used, so the baseline 3 is appropriate.

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 clearly states a specific action: renew the authentication session for the Gestão de Tarefas system, using either saved or provided credentials. Although it does not explicitly differentiate itself from sibling tools like verificar_status_conexao, the action and resource are uniquely identifiable.

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

Usage Guidelines2/5

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

There is no guidance on when to use this tool versus alternatives such as verificar_status_conexao, nor any mention of prerequisites or exclusions. The description only implies that renewal is the intended purpose, so an agent gets no help choosing it over related authentication/connection tools.

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

sincronizar_fila_offlineB

Força o envio de todas as demandas e subtarefas que foram geradas localmente enquanto desconectado da VPN/intranet.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.4/5.0
Behavior2/5

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

With no annotations, the description carries full responsibility. It discloses that the tool forces sending of all offline items, but omits critical details: what happens to local copies after sync, whether the operation is blocking or asynchronous, failure handling, or if it clears the queue. The impact of this mutation is not clarified.

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 a single, concise sentence that efficiently communicates the action and scope. It is front-loaded with the verb and resource, has no fluff, and every word contributes meaning.

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?

Given the tool's simplicity (no params, no output schema), the description is mostly adequate but has gaps: it does not address edge cases like network failures, duplication of sends, or the effect on local data after successful sync. These are relevant for a mutation tool and would improve completeness.

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?

The tool has zero parameters, so the schema covers everything. The description adds no parameter information, but that is unnecessary. According to the baseline for 0-parameter tools, a 4 is appropriate; no compensation is required.

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 clearly states the verb ('Força o envio') and resource ('todas as demandas e subtarefas'), specifying their origin (generated locally while offline). It distinguishes this from sibling tools like criar_demanda or listar_demandas_ativas by focusing on the sync action, though it doesn't explicitly name alternatives.

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

Usage Guidelines3/5

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

The description implies the intended use case (syncing offline-generated items after reconnection), but does not explicitly state when to use it versus other tools, nor provide exclusions or prerequisites like checking connection status via verificar_status_conexao. Guidance is implicit from the context.

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

verificar_status_conexaoA

Informa o estado da conexão com a API da intranet, a validade do token de autenticação e a quantidade de itens na fila offline pendente.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.8/5.0
Behavior3/5

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

Sem anotações, a descrição carrega o ônus de explicar o comportamento. Ela indica que é uma operação de leitura ('Informa'), mas não declara explicitamente que não modifica dados nem tem efeitos colaterais. Para uma ferramenta de status, é aceitável, mas poderia reforçar a ausência de mutação. Não contradiz o esquema.

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?

Uma única frase, direta e sem excessos, lista os três itens de saída principais. Carga informativa alta com zero desperdício.

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?

A descrição cobre os três aspectos do status (conexão, token, fila offline). Sem saída estruturada e sem anotações, essa é uma informação suficiente para um tool de verificação simples. Faltaria apenas uma menção explícita a ser read-only para completar totalmente o contexto.

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?

A ferramenta não possui parâmetros, então a cobertura do esquema é 100% trivial. A descrição não precisa explicar parâmetros inexistentes. Pontuação base para 0 parâmetros é 4.

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?

A descrição informa claramente a finalidade: reportar estado da conexão, validade do token e quantidade de itens na fila offline. O verbo 'Informa' e o recurso específico (estado da conexão, token, fila) diferenciam de todos os irmãos, que tratam de projetos, demandas, sprints e sincronização.

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

Usage Guidelines2/5

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

Não há orientação explícita sobre quando usar esta ferramenta em relação às alternativas. A descrição não menciona, por exemplo, que deve ser chamada antes de sincronizar a fila offline ou para diagnosticar falhas de conexão. Apenas descreve o que faz, sem contexto de uso.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 5 tool updatesv1.1.0
    • Addedatualizar_demanda
    • Changedatualizar_subtarefa5 fields changed
      • addedInput schema / properties / subtarefa_id / anyOf
        Added value: +[
        +  {
        +    "type": "number"
        +  },
        +  {
        +    "items": {
        +      "type": "number"
        +    },
        +    "maxItems": 500,
        +    "type": "array"
        +  }
        +]
      • changedInput schema / properties / subtarefa_id / description
        Previous value: -"ID da subtarefa a ser atualizada."New value: +"ID numérico da subtarefa ou lista de IDs a atualizar."
      • removedInput schema / properties / subtarefa_id / type
        Removed value: -"number"
      • addedInput schema / properties / subtarefa_ids
        Added value: +{
        +  "description": "Lista de IDs de subtarefas a serem atualizadas em lote.",
        +  "items": {
        +    "type": "number"
        +  },
        +  "maxItems": 500,
        +  "type": "array"
        +}
      • removedInput schema / required
        Removed value: -[
        -  "subtarefa_id"
        -]
    • Addedconcluir_subtarefas
    • Changedcriar_demanda1 field changed
      • changedInput schema / properties / descricao / description
        Previous value: -"Descrição detalhada da demanda (suporta HTML/Markdown)."New value: +"Descrição detalhada da demanda em HTML rich text (<p>, listas, links). Texto simples é convertido automaticamente para HTML."
    • Addedrenovar_sessao
  2. 11 tool updatesv1.0.0
    • First observedassociar_demanda_sprint
    • First observedatualizar_subtarefa
    • First observedcriar_demanda
    • First observedcriar_subtarefa
    • First observedlistar_demandas_ativas
    • First observedlistar_projetos
    • First observedlistar_sprints
    • First observedobter_contexto_projeto
    • First observedobter_detalhes_demanda
    • First observedsincronizar_fila_offline
    • First observedverificar_status_conexao

TDQS

A3.7/5.0

Scored across 14 tools

Disambiguation4/5

Most tools target distinct resources and actions, e.g. project context vs project listing, demand details vs active demand list. Some boundary ambiguity exists between atualizar_subtarefa and concluir_subtarefas, since both can change subtask statuses in bulk, but their primary intents are distinguishable.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern in Portuguese snake_case (obter_, listar_, criar_, atualizar_, concluir_, etc.). There are no mixed conventions or inconsistent verb styles.

Tool Count5/5

14 tools is well within the appropriate range for a task-management MCP server. Each tool addresses a distinct workflow area: project context, demand lifecycle, subtask management, sprints, and offline/session handling.

Completeness4/5

The core demand/subtask lifecycle is covered: create, read, update, list, bulk conclude, and sprint association. Minor gaps exist such as no delete/archive operations and no all-demand listing beyond active demands, but these are workable.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers