From Pipefy
Monitors AI agent logs, automation execution logs, org usage stats, AI credit consumption, and exports automation job history via 10 MCP tools.
How this skill is triggered — by the user, by Claude, or both
Slash command
/pipefy:pipefy-observabilityThe summary Claude sees in its skill listing — used to decide when to auto-load this skill
Monitor AI agent and automation execution, usage stats, credit consumption, and export job history. **10 MCP tools.**
Monitor AI agent and automation execution, usage stats, credit consumption, and export job history. 10 MCP tools.
CLI status (v0.1): use MCP tools below. Observability Typer commands are planned for v0.3+.
| Concept | What tools expect | How to obtain |
|---|---|---|
| Pipe for AI agent logs | repo_uuid — the pipe UUID | get_pipe with numeric pipe_id; use pipe.uuid. |
| Automation for logs | automation_id — numeric | get_automations pipe_id=... |
| Org for usage stats | organization_id — numeric | Known from account setup or get_organization. |
| Tool (MCP) | CLI | Read-only | Purpose |
|---|---|---|---|
get_ai_agent_logs | — (CLI v0.3+) | Yes | Execution history for a specific AI agent. |
get_ai_agent_log_details | — (CLI v0.3+) | Yes | Single execution detail for an AI agent log entry. |
get_automation_logs | — (CLI v0.3+) | Yes | Execution history for an automation (by automation ID or pipe). |
get_automation_logs_by_repo | — (CLI v0.3+) | Yes | Automation logs filtered by pipe UUID. |
get_agents_usage | — (CLI v0.3+) | Yes | Org-level AI agent execution count and trends. |
get_automations_usage | — (CLI v0.3+) | Yes | Org-level automation execution stats. |
get_ai_credit_usage | — (CLI v0.3+) | Yes | AI credit consumption and remaining balance. |
export_automation_jobs | — (CLI v0.3+) | Yes | Trigger async export of automation job history. |
get_automation_jobs_export | — (CLI v0.3+) | Yes | Poll export job status (after export_automation_jobs). |
get_automation_jobs_export_csv | — (CLI v0.3+) | Yes | Download finished automation-jobs export as CSV text. |
Get the pipe UUID (not the numeric pipe ID):
MCP: get_pipe pipe_id=67890
Capture pipe.uuid from the response.
Fetch recent agent logs:
MCP: get_ai_agent_logs repo_uuid=<UUID> page=1
Identify the failed execution — look for status: failed entries.
Check credit usage if the agent stopped unexpectedly:
MCP: get_ai_credit_usage organization_id=123
Fix and re-enable — update the agent config (see skills/ai-agents/) and toggle status:
MCP: toggle_ai_agent_status agent_id=456
Trigger the export:
MCP: export_automation_jobs organization_id=123 period="current_month"
Poll for completion:
MCP: get_automation_jobs_export export_id=<EXPORT_ID>
Repeat until status is finished or failed.
Fetch CSV text (when finished):
MCP: get_automation_jobs_export_csv export_id=<EXPORT_ID>
get_ai_agent_logs returns empty: use the pipe UUID (e.g., abc123-...), not the numeric pipe ID. Get UUID from get_pipe.get_automation_jobs_export stays in processing: large exports take time. Wait at least 60 seconds between polls. If still processing after several minutes, retry the export trigger.skills/ai-agents/ — create and configure AI agents.skills/automations/ — create and debug automation rules.npx claudepluginhub pipefy/ai-toolkit --plugin pipefyCreates, reads, updates, deletes, and troubleshoots Pipefy conversational AI agents with behaviors. Covers 7 MCP tools including pre-flight validation.
Analyzes production Agentforce agent behavior using STDM session traces and Data Cloud. Triggers for querying sessions, investigating failures, regressions, performance issues, or reproducing in preview.
Automates Agenty tasks via Composio's Agenty toolkit through Rube MCP. Discovers tools, manages connections, and executes workflows.