mcpanonimohealth
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| verificar_instalacaoA | Verifica, sem abrir documentos, se o processamento local está disponível. |
| processar_lote_localA | Abre seletores nativos de pastas; processa em lote sem receber caminhos no chat. |
| selecionar_e_desidentificarA | Abre localhost e retorna job_id; o agente deve pollar consultar_job em seguida. |
| consultar_jobA | Consulta estado do job; em PROCESSING continue pollando sem pedir 'Feito'. |
| obter_texto_desidentificadoC | Retorna texto PASS (único) ou pacote organizado do lote; outros estados bloqueiam. |
| descartar_jobB | Descarta imediatamente o derivado temporário identificado pelo job_id. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool maps to a distinct workflow step: environment check, two different initiation methods (batch via folder selectors vs. localhost), status polling, result retrieval, and cleanup. The overlap between processar_lote_local and selecionar_e_desidentificar is resolved by their explicit input methods and return behavior, so no ambiguity remains.
All tool names use lowercase_with_underscores and follow an imperative verb pattern (verificar, processar, selecionar, consultar, obter, descartar). The only deviation is 'selecionar_e_desidentificar', which uses a compound verb phrase instead of a simple verb_noun, but the overall style is still consistent and predictable.
With six tools, the server is well-scoped for its purpose. Each tool is necessary to complete the anonymization workflow: readiness check, two processing triggers, polling, result retrieval, and cleanup. There is no redundancy or bloat.
The tool set provides a complete lifecycle for the anonymization process: verify environment, initiate processing (batch or localhost), monitor job status, retrieve the final text, and discard temporary data. No critical operation is missing for the stated domain.