Plugins: automacao, crm-ops, design-media, dev-tools, gestao, infraestrutura, marketing, negocio, perfex-dev, project-manager, wordpress + hello-plugin (existente). Totais: 83 skills, 44 agents, 12 datasets.json Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
93 lines
1.6 KiB
Markdown
93 lines
1.6 KiB
Markdown
# /n8n-health - Diagnóstico n8n
|
|
|
|
Verificar conectividade e estado da instância n8n.
|
|
|
|
---
|
|
|
|
## Uso
|
|
|
|
```
|
|
/n8n-health # Status rápido
|
|
/n8n-health verbose # Diagnóstico completo
|
|
```
|
|
|
|
---
|
|
|
|
## Instância
|
|
|
|
| Aspecto | Valor |
|
|
|---------|-------|
|
|
| URL | `https://automator.descomplicar.pt` |
|
|
| MCP | `mcp__n8n__*` |
|
|
|
|
---
|
|
|
|
## Execução
|
|
|
|
### Status Rápido (default)
|
|
|
|
```
|
|
1. mcp__n8n__n8n_health_check({ mode: "status" })
|
|
2. Reportar: status, URL, versão, response time
|
|
```
|
|
|
|
### Diagnóstico Completo (verbose)
|
|
|
|
```
|
|
1. mcp__n8n__n8n_health_check({ mode: "diagnostic", verbose: true })
|
|
2. Reportar: env vars, tool status, cache, erros
|
|
```
|
|
|
|
---
|
|
|
|
## Output Esperado
|
|
|
|
```
|
|
n8n Health Check
|
|
----------------
|
|
Status: OK | ERRO
|
|
URL: https://automator.descomplicar.pt
|
|
MCP: 2.33.x
|
|
Response: XXXms
|
|
Workflows: XX activos
|
|
```
|
|
|
|
---
|
|
|
|
## Se Falhar
|
|
|
|
| Erro | Causa | Solução |
|
|
|------|-------|---------|
|
|
| Connection refused | n8n offline | Verificar servidor |
|
|
| 401 Unauthorized | API key inválida | Regenerar no n8n |
|
|
| Timeout | Rede lenta | Verificar latência |
|
|
|
|
### Diagnóstico Manual
|
|
|
|
```bash
|
|
# Verificar se n8n responde
|
|
curl -I https://automator.descomplicar.pt
|
|
|
|
# Verificar API
|
|
curl -H "X-N8N-API-KEY: $KEY" https://automator.descomplicar.pt/api/v1/workflows
|
|
|
|
# Logs MCP
|
|
~/.claude/logs/mcp-n8n.log
|
|
```
|
|
|
|
---
|
|
|
|
## Skills Relacionadas
|
|
|
|
| Skill | Quando Usar |
|
|
|-------|-------------|
|
|
| `/n8n-webhook` | Criar webhooks |
|
|
| `/n8n-schedule` | Automações cron |
|
|
| `/n8n-sync` | Sincronização dados |
|
|
| `/n8n-notify` | Alertas |
|
|
| `/n8n-chatbot` | AI/Chatbots |
|
|
|
|
---
|
|
|
|
*Skill v1.0 | Descomplicar®*
|