templates/agents/skills/mcp-troubleshooting/SKILL.md
Diagnose and fix MCP configuration/runtime issues across supported integrations using agents CLI checks.
npx skillsauth add amtiyo/agents mcp-troubleshootingInstall this skill globally with one command. Works with Claude Code, Cursor, and Windsurf.
3 of 9 scanners reported clean
Some scanners were skipped, did not run, or reported a non-clean status. Review each row below.
When MCP servers are failing or not visible:
agents status --fast to inspect configured vs enabled integrations.agents mcp test for schema/config validation.agents mcp test --runtime to check integration CLI/runtime connectivity.agents doctor for environment and binary diagnostics.agents sync and verify with agents sync --check.Troubleshooting priorities:
documentation
Explain how to create, organize, and maintain skills in .agents/skills when the user asks about skills.
testing
Gather official, up-to-date documentation and convert it into a concise implementation checklist for the current coding task.
tools
Use when work should span one or more detached tasks but still behave like one job with a single owner context. TaskFlow is the durable flow substrate under authoring layers like Lobster, ACPX, plugins, or plain code. Keep conditional logic in the caller; use TaskFlow for flow identity, child-task linkage, waiting state, revision-checked mutations, and user-facing emergence.
tools
# Lobster Lobster executes multi-step workflows with approval checkpoints. Use it when: - User wants a repeatable automation (triage, monitor, sync) - Actions need human approval before executing (send, post, delete) - Multiple tool calls should run as one deterministic operation ## When to use Lobster | User intent | Use Lobster? | | ------------------------------------------------------ | --------------------------