MCP Movidesk Server
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@MCP Movidesk ServerFind tickets about network issues"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🎫 MCP Movidesk Server
Servidor MCP (Model Context Protocol) para gerenciamento de tickets do Movidesk, construído em TypeScript + Node.js.
Permite que agentes de IA criem, consultem, pesquisem e gerenciem tickets diretamente no Movidesk, sem precisar acessar a plataforma manualmente.
📋 Ferramentas Disponíveis
# | Ferramenta | Descrição |
1 |
| Criar novo ticket com macro de suporte (atendimento/escalonamento) |
2 |
| Buscar detalhes completos de um ticket por ID |
3 |
| Pesquisar tickets resolvidos como base de conhecimento |
4 |
| Adicionar comentário/ação em ticket existente |
5 |
| Listar tickets de um cliente por nome/email/CPF/CNPJ |
6 |
| Mudar status do ticket (Novo, Em atendimento, Resolvido, etc.) |
7 |
| Atribuir ticket a um agente ou equipe |
Related MCP server: Xalantis MCP Server
🚀 Instalação
1. Instalar dependências
cd c:\Users\Usuario\Documents\Mcp_Eagle
npm install2. Configurar token da API
Copie o arquivo de exemplo e insira seu token:
copy .env.example .envEdite o arquivo .env e substitua seu_token_aqui pelo seu token real:
MOVIDESK_TOKEN=seu_token_real_aquiOnde encontrar o token: Movidesk > Configuração > Conta > Parâmetros > Aba Ambiente
3. Compilar o projeto
npm run build⚙️ Configuração no Antigravity
Adicione a seguinte configuração ao seu settings.json do Antigravity:
{
"mcpServers": {
"mcp-movidesk": {
"command": "node",
"args": ["c:\\Users\\Usuario\\Documents\\Mcp_Eagle\\dist\\index.js"],
"env": {
"MOVIDESK_TOKEN": "seu_token_aqui"
}
}
}
}🧪 Testes
Execute todos os testes:
npm testModo watch (re-executa ao salvar):
npm run test:watch� Docker (Swarm & Portainer)
O projeto está configurado para ser implantado facilmente através de Portainer/Docker Swarm com suporte a Traefik e HTTPS nativo via pacote Express.
Build da Imagem
Para criar a imagem Docker otimizada:
docker build -t mcp-movidesk-eagle:latest .Deploy no Portainer (Stacks)
Acesse seu Portainer.
Navegue até Swarm > Stacks e clique em Add stack.
Copie o conteúdo do arquivo
docker-compose.ymle cole no Web Editor.Na seção Environment variables, adicione
MOVIDESK_TOKENcom o seu token real.Clique em Deploy the stack.
A configuração utiliza o Traefik como proxy e vai publicar automaticamente em
https://mcp.wizeflowsolutions.com/mcp.
🌐 Configuração Remota (via Domínio)
Para utilizar as ferramentas do MCP em clientes modernos ou em nuvem que suportam conexões via domínio (SSE - Server-Sent Events) como Dify, Flowise, Cursor ou LangChain, você informará que o tipo de conexão é remota.
O formato JSON para essas configurações:
{
"mcpServers": {
"mcp-movidesk-cloud": {
"type": "sse",
"url": "https://mcp.wizeflowsolutions.com/mcp"
}
}
}Atenção: Em aplicativos puramente locais não adaptados para leitura web, utilize o método CLI fornecido na seção de "Configuração no Antigravity".
�📁 Estrutura do Projeto
src/
├── index.ts # Ponto de entrada (stdio transport)
├── servidor-mcp.ts # Registra as 7 ferramentas
├── cliente-movidesk/
│ ├── api.ts # Cliente HTTP com rate-limiting
│ └── tipos.ts # Tipos TypeScript (interfaces/enums)
├── ferramentas/
│ ├── criar-ticket.ts # Criar ticket com macro
│ ├── consultar-ticket.ts # Consultar ticket por ID
│ ├── buscar-conhecimento.ts # Base de conhecimento
│ ├── adicionar-interacao.ts # Adicionar interação
│ ├── listar-tickets.ts # Listar tickets do cliente
│ ├── alterar-status.ts # Alterar status
│ └── atribuir-agente.ts # Atribuir agente
└── utilidades/
├── formatador-html.ts # Markdown → HTML
├── validacoes.ts # Validações (CPF, CNPJ, email)
└── macros-suporte.ts # Templates HTML de macros
testes/
├── formatador-html.test.ts
├── validacoes.test.ts
├── api-cliente.test.ts
└── ferramentas.test.ts🔧 Desenvolvimento
# Executar em modo desenvolvimento (com tsx)
npm run dev
# Compilar TypeScript
npm run build
# Executar versão compilada
npm start📄 Licença
MIT
Available Tools
8 toolsadicionar_interacaoA
Adiciona uma interação (comentário/ação) em um ticket existente do Movidesk. O conteúdo é automaticamente formatado em HTML. IMPORTANTE: Pergunte ao usuário o número do ticket. Se o usuário mencionar o nome do cliente, utilize primeiro a ferramenta 'consultar_cliente' e 'listar_tickets_cliente' para achar o ID Exato do ticket.
| Name | Required | Description | Default |
|---|---|---|---|
| publico | No | Se a interação é pública (visível ao cliente) ou interna. Padrão: true (pública) | |
| conteudo | Yes | Conteúdo da interação/comentário. Pode usar Markdown para formatação (negrito, listas, etc.). Será convertido para HTML automaticamente. | |
| ticketId | Yes | ID numérico do ticket onde adicionar a interação | |
| nomeAutor | No | Nome do autor da interação (para registro no corpo da mensagem) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the burden. It reveals that content is automatically formatted to HTML, which is a useful behavioral trait. However, it does not mention side effects, reversibility, or permission requirements, leaving some 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the core purpose, followed by an important usage note. No wasted words; every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a simple mutation tool, the description is complete: it defines the action, provides critical usage instructions, and notes formatting behavior. The schema covers all parameters, and no output schema is needed. It could mention return values or side effects, but these are not essential for this tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. The description adds value by instructing the agent to ask for the ticket number and how to source it via other tools, which directly informs the ticketId parameter. It also reiterates the HTML formatting, aligning with the conteudo description.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description states a specific verb ('Adiciona') and resource ('interação em um ticket existente do Movidesk'), making the tool's purpose immediately clear. It distinguishes from siblings like 'criar_ticket' by specifying action on an existing ticket.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
It provides explicit instructions on when to use the tool: ask the user for the ticket number, and if the client name is given, first use 'consultar_cliente' and 'listar_tickets_cliente' to find the exact ticket ID. This gives clear context and alternatives.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
alterar_status_ticketA
Altera o status de um ticket no Movidesk. Status disponíveis: 'Novo', 'Em atendimento', 'Parado', 'Resolvido', 'Cancelado', 'Fechado'. Alguns status como 'Parado' e 'Cancelado' exigem justificativa obrigatória.
| Name | Required | Description | Default |
|---|---|---|---|
| ticketId | Yes | ID numérico do ticket a ter o status alterado | |
| novoStatus | Yes | Novo status do ticket em português: 'Novo', 'Em atendimento', 'Parado', 'Resolvido', 'Cancelado' ou 'Fechado' | |
| justificativa | No | Justificativa para a mudança de status (obrigatória para alguns status como 'Parado' e 'Cancelado') |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the full burden and does disclose that some statuses require a mandatory justification. It does not, however, cover other behavioral aspects such as permission requirements, reversibility, or possible side effects like notifications, leaving some transparency gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is compact, front-loaded with the action, and uses two sentences to convey the core purpose and the conditional requirement. Every clause earns its place without redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simplicity of the tool and fully described parameters, the description covers the main purpose and the one non-obvious constraint (justification for certain statuses). It lacks explicit guidance on error scenarios or post-conditions, but for a status mutation tool this is adequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema has 100% coverage with descriptions for all three parameters, so the baseline is 3. The description's mention of available statuses and justification requirement merely duplicates what is already in the property descriptions, adding no new semantic meaning.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Altera' and the resource 'status de um ticket no Movidesk', which precisely distinguishes it from sibling tools that create, consult, or list tickets. It also lists the allowed statuses, reinforcing the specific action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context that this tool is for changing ticket statuses and enumerates the allowed statuses. However, it does not explicitly mention when not to use it or compare it with alternatives like adicionar_interacao or atribuir_agente, so it stops short of full exclusion guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
atribuir_agenteA
Atribui um ticket a um agente ou equipe específica no Movidesk, alterando o responsável (owner) do ticket. Use para escalonar ou redistribuir tickets entre a equipe.
| Name | Required | Description | Default |
|---|---|---|---|
| equipe | No | Nome da equipe à qual o ticket será atribuído (opcional) | |
| agenteId | Yes | ID (identificador/email) do agente ou equipe que assumirá o ticket | |
| ticketId | Yes | ID numérico do ticket a ser atribuído | |
| nomeAgente | No | Nome do agente para referência (não é enviado à API, apenas para contexto) |
TDQS
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 discloses the core behavioral effect—'alterando o responsável (owner) do ticket'—which is valuable. However, it lacks details on permissions, reversibility, or side effects (e.g., notifications to the assigned agent), making it only moderately transparent.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, front-loaded with the action and purpose, with no redundant wording. It efficiently conveys the operation and its intended use.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a straightforward assignment tool with no output schema, the description covers the action, the target resource, and the use case. It does not mention the response format or parameter interactions, but these are not critical for a simple mutation tool with well-described schema.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers all four parameters with descriptions (100% coverage), so the baseline is 3. The description does not add meaning beyond the schema; it only repeats the 'agente ou equipe' concept. The potential ambiguity between agenteId and equipe is not addressed, but that lies outside the description's added value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool assigns a ticket to a specific agent or team and changes the ticket's owner. This specific verb+resource combination distinguishes it from sibling tools like criar_ticket (create) or alterar_status_ticket (change status).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description includes an explicit usage context: 'Use para escalonar ou redistribuir tickets entre a equipe.' This tells the agent when to apply the tool, but it does not explicitly mention alternatives or when not to use it, so it does not fully meet the highest bar.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
buscar_conhecimentoA
Pesquisa na base de conhecimento do Movidesk (tickets resolvidos/fechados) para encontrar soluções de problemas similares. Receba a descrição do problema, busque tickets relacionados e retorne instruções de resolução. Funciona como uma base de conhecimento viva da equipe de suporte.
| Name | Required | Description | Default |
|---|---|---|---|
| descricaoProblema | Yes | Descrição do problema que você está enfrentando. Quanto mais detalhado, melhor será a busca na base de conhecimento. | |
| incluirInteracoes | No | Se deve incluir as interações/soluções encontradas nos tickets (padrão: true) | |
| quantidadeResultados | No | Quantidade máxima de resultados a retornar (padrão: 5, máximo: 20) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations to rely on, the description carries the burden of behavioral disclosure. It clearly indicates a search (non-mutating) operation and describes the source and workflow, but it does not disclose potential behavior such as what happens when no results are found, whether it is read-only, or any side effects. This is a moderate disclosure.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is three sentences, front-loaded with the core purpose and then explaining the workflow. The third sentence about 'base de conhecimento viva' is somewhat redundant with the first two, but it adds a useful analogy without wasting words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (3 parameters, 1 required, all documented in schema), the description adequately covers purpose, workflow, and return value (resolution instructions). It doesn't detail result structure, but with no output schema, this is not strictly required. Overall, it provides a solid, complete context for selecting and invoking the tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema fully describes all three parameters, so the baseline is 3. The description only implicitly references the primary parameter (descricaoProblema) and does not add extra meaning about how incluirInteracoes or quantidadeResultados affect the search. Since schema coverage is 100%, the description doesn't need to compensate, but it also provides no additional value.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description specifies a clear verb ('Pesquisa') and resource ('base de conhecimento do Movidesk (tickets resolvidos/fechados)'), clearly distinguishing this search tool from the sibling ticket-management tools. It states exactly what it does: receives a problem description, searches related tickets, and returns resolution instructions.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides a clear workflow: 'Receba a descrição do problema, busque tickets relacionados e retorne instruções de resolução,' indicating when this tool should be used. It doesn't explicitly name alternatives or exclusions, but the context makes its intended use clear as a knowledge-base search rather than a ticket mutation.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_clienteA
Busca e consulta se um cliente existe na base de contatos do sistema (Pessoas/Empresas), buscando pelo Nome (Razão social), Email ou CPF/CNPJ. Sempre use essa função se o usuário solicitar para checar um cliente, antes de abrir tickets.
| Name | Required | Description | Default |
|---|---|---|---|
| nomeCliente | No | Nome, razão social ou nome fantasia do cliente para busca (ex: 'ALMEIDA') | |
| emailCliente | No | Email do cliente para busca | |
| documentoCliente | No | CPF ou CNPJ do cliente para busca |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavioral traits. It fails to state whether the tool returns a boolean existence flag, a list of matches, or full contact records, and does not explain behavior when multiple parameters are provided or none are given. The verb 'consulta' implies read-only, but the lack of return format info leaves a significant gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences with no redundancy. The first sentence packs the core purpose and search method, and the second adds a direct usage directive. It is front-loaded and every sentence earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema and no annotations, the description should outline return values and edge cases. It does not specify the output format or behavior for missing or multiple parameters. Although the tool is low complexity, these gaps make the description only partially complete for an agent.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema descriptions cover all three parameters (100%), so the baseline is 3. The description only reiterates the search fields without adding new semantics such as exact vs. partial matching, AND/OR behavior, or the effect of omitting all parameters. It adds negligible value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb ('Busca e consulta') and clearly identifies the resource ('base de contatos do sistema (Pessoas/Empresas)') and search criteria (Nome, Email, CPF/CNPJ). It distinguishes this tool from sibling tools focused on tickets and knowledge. The workflow hint 'antes de abrir tickets' further clarifies its unique role.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly instructs 'Sempre use essa função se o usuário solicitar para checar um cliente, antes de abrir tickets.' This provides a clear conditional trigger and timing for use, which is sufficient for an agent to select this tool. Since no sibling tool offers the same lookup functionality, no alternatives are needed.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
consultar_ticketA
Busca os detalhes completos de um ticket do Movidesk pelo seu ID numérico. Retorna todas as informações incluindo status, responsável, cliente, interações, campos personalizados e datas.
| Name | Required | Description | Default |
|---|---|---|---|
| ticketId | Yes | ID numérico do ticket no Movidesk (ex: 12345) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It reveals that the tool returns all ticket information (status, responsible, client, interactions, custom fields, dates), which is useful. However, it does not explicitly state that the operation is read-only, nor does it mention possible error conditions (e.g., ticket not found) or rate limits, leaving some transparency gaps.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description consists of two concise sentences. The first states the action and resource, the second lists the fields returned. Every word contributes value, and it is efficiently front-loaded with the core purpose.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This is a simple tool with one parameter and no output schema. The description adequately explains the return value by listing key fields, which is sufficient for a lookup operation. Minor gaps remain, such as not describing behavior for non-existent tickets, but overall it is complete for the tool's complexity.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema already describes ticketId as 'ID numérico do ticket no Movidesk (ex: 12345)' with 100% coverage. The description only repeats 'ID numérico' without adding new meaning, such as how to obtain the ID or format constraints. The baseline score of 3 is appropriate since the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'Busca' (fetches) and the resource 'ticket do Movidesk' by numeric ID, which distinguishes it from sibling tools like listar_tickets_cliente and alterar_status_ticket. It also enumerates the kind of data returned, making the tool's purpose unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage: when you need complete details of a single ticket by ID. However, it does not explicitly provide when-to-use versus alternatives, such as when to prefer listar_tickets_cliente for multiple tickets. No exclusions or comparison to sibling tools are given.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
criar_ticketA
Cria um novo ticket no Movidesk com macro de suporte formatada em HTML. Ideal para registrar atendimentos após o suporte. Suporta macros de atendimento e escalonamento. SEMPRE use a ferramenta 'consultar_cliente' ANTES para pegar o email ou id do cliente (você NÃO PODE tentar adivinhar ou embutir um CPF/CNPJ ou Nome, a api apenas suportará dados reais vindos da consulta do cliente no movidesk)
| Name | Required | Description | Default |
|---|---|---|---|
| tags | No | Tags/etiquetas para categorizar o ticket (lista de strings) | |
| assunto | Yes | Título/assunto do ticket (mínimo 3 caracteres) | |
| urgencia | No | Nível de urgência do ticket: Baixa, Média, Alta ou Urgente | Baixa |
| categoria | No | Categoria do ticket. Opções: 'Dúvida', 'Problema', 'Solicitação de serviço', 'Sugestão' | |
| descricao | Yes | Descrição detalhada do problema ou solicitação. Pode usar Markdown para formatação (negrito, listas, etc.) | |
| tipoMacro | No | Tipo de macro a aplicar: 'atendimento' (padrão), 'escalonamento' ou 'nenhuma' | atendimento |
| observacoes | No | Observações adicionais sobre o atendimento | |
| tipoServico | No | Tipo de serviço associado ao ticket (ex: 'Vendas', 'Suporte'). Use o nome exato cadastrado no Movidesk. | |
| versaoBanco | No | Versão do(s) banco(s) / sistema do cliente (ex: 2025.002) | |
| emailCliente | Yes | Email, CPF, CNPJ ou ID do cliente que está cadastrado no Movidesk | |
| nivelServico | No | Sub-nível do serviço (ex: 'Nivel Basico', 'Nivel 1'). Usado junto com tipoServico. | |
| equipeDestino | No | (Escalonamento) Equipe para a qual o ticket será escalonado | |
| nomeAtendente | No | Nome do atendente que realizou o suporte | |
| responsavelId | No | ID do agente responsável pelo ticket. Se não informado, usa o owner padrão da conta. | |
| sistemaAfetado | No | Sistema ou módulo que foi afetado pelo problema | |
| solucaoAplicada | No | Solução que foi aplicada para resolver o problema (se resolvido) | |
| canalAtendimento | No | Canal pelo qual o atendimento foi realizado | |
| equipeResponsavel | No | Nome da equipe responsável pelo ticket (ex: 'Administradores', 'Atendimento'). | |
| motivoEscalonamento | No | (Escalonamento) Motivo pelo qual o ticket está sendo escalonado | |
| tentativasResolucao | No | (Escalonamento) O que já foi tentado para resolver o problema |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It discloses key behaviors: the ticket is created with a support macro formatted in HTML, supports macros 'atendimento' and 'escalonamento', and that client data MUST come from a real query. However, it does not mention side effects, error handling, or response formats, which are relevant 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.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is concise: three sentences, front-loaded with the main action. Each sentence provides valuable information—purpose, use case, and a critical prerequisite—without superfluous detail.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (20 parameters, no output schema), the description is complete enough by covering the tool's purpose, usage context, macro types, and the mandatory prerequisite of using consultar_cliente. The schema handles parameter details, so the description does not need to enumerate all optional fields.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100% (0.0), so the baseline is 3. The description adds meaning beyond the schema by emphasizing that emailCliente must be obtained from 'consultar_cliente' and cannot be guessed, and by explaining the purpose of macro types ('atendimento' and 'escalonamento'). This raises the score.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states 'Cria um novo ticket no Movidesk' (Creates a new ticket in Movidesk) with a specific verb and resource. It also distinguishes from sibling tools by indicating that it creates tickets and supports macros, while sibling tools are for viewing, searching, or modifying tickets.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description provides clear context: 'Ideal para registrar atendimentos após o suporte' (ideal for recording after support) and explicitly instructs to use 'consultar_cliente' BEFORE to retrieve client data, which is a strong usage guideline. It does not explicitly mention alternatives or exclusions, but the context is sufficient to know when to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
listar_tickets_clienteA
Lista os últimos tickets de um cliente específico, filtrando por nome (razão social), email ou documento (CPF/CNPJ). Útil para verificar histórico e evitar duplicidade antes de criar um novo ticket.
| Name | Required | Description | Default |
|---|---|---|---|
| quantidade | No | Quantidade máxima de tickets a retornar (padrão: 10, máximo: 50) | |
| nomeCliente | No | Nome, razão social ou nome fantasia do cliente para busca (ex: 'ALMEIDA'). Forma preferida de busca. | |
| emailCliente | No | Email do cliente para filtrar tickets | |
| documentoCliente | No | CPF ou CNPJ do cliente para filtrar tickets |
TDQS
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 states it lists 'os últimos tickets' but does not disclose ordering semantics, whether filters are combined with AND/OR, whether at least one filter is required (all params are optional), or any side effects/permissions. This is a notable gap for a tool that could behave unpredictably without filters.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences. The first sentence states purpose and filters; the second gives a practical use case. No wasted words, and the key information is front-loaded.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has no output schema and no annotations, the description should compensate with more detail about expected behavior, return format, and edge cases. The ambiguity about whether a filter is required and how the 'últimos tickets' are determined leaves the agent uncertain. It's adequate for a simple use case but not complete enough for reliable autonomous invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so each parameter already has a clear description. The tool description adds the overall context of filtering customer tickets but does not add meaning beyond the schema. Baseline 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
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 ('tickets de um cliente específico'), and clearly specifies filter criteria (nome, email, documento). It distinguishes itself from siblings like criar_ticket (create) and consultar_ticket (single ticket lookup) by emphasizing listing history for a client.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use: 'Útil para verificar histórico e evitar duplicidade antes de criar um novo ticket' (useful for checking history and avoiding duplicates before creating a new ticket). It provides clear context, though it does not explicitly mention alternatives or when not to use it.
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.
8 tool updates
v1.0.0- First observed
adicionar_interacao - First observed
alterar_status_ticket - First observed
atribuir_agente - First observed
buscar_conhecimento - First observed
consultar_cliente - First observed
consultar_ticket - First observed
criar_ticket - First observed
listar_tickets_cliente
TDQS
Scored across 8 tools
Each tool targets a clear, distinct resource and action: ticket creation, ticket retrieval, knowledge search, interaction addition, ticket listing by client, client lookup, status change, and agent assignment. There is no overlap or ambiguity between them.
All tool names follow a consistent verb_noun pattern in Portuguese, using snake_case throughout (e.g., criar_ticket, consultar_ticket, alterar_status_ticket). The naming is predictable and readable, with no mixed conventions.
With 8 tools, the server provides a focused set that covers the core ticket management workflow without being bloated or too thin. Each tool serves a distinct function, making the count well-scoped for the domain.
The core ticket lifecycle is covered: create, retrieve, list by client, add interactions, change status, and assign. Minor gaps include lack of a general list-all-tickets endpoint and no update/delete for tickets, but these are workable for a support-focused toolset.
Related MCP Connectors
Connect AI tools to Weav customer service. Search conversations, reply, and manage knowledge.
Read tickets, contacts, companies, agents and groups; create, update and reply to tickets.
Build and manage AI-native customer support agents from Claude or any MCP client.
Create and manage MeisterTask projects, tasks, and notes from your AI assistant.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI assistants to create, search, and manage OTRS tickets and configuration items via the OTRS API.7Apache 2.0

Xalantis MCP Serverofficial
AlicenseAqualityBmaintenanceEnables managing support tickets from Claude, Cursor, and other AI tools, including listing, creating, updating, and replying to tickets.67 npmMIT- AlicenseAqualityDmaintenanceEnables fetching and searching Freshdesk tickets, including details like conversations, attachments, and custom fields, via natural language queries.3244 npm1MIT
- FlicenseNot gradedqualityCmaintenanceEnables ticket management and AI triage through Mistral-compatible models, with tools for creating, listing, retrieving, triaging, and updating support tickets.-