Verify MCP server installation and configuration status
Diagnoses MCP server installation and configuration issues. Use this when MCP tools aren't appearing or working to identify missing prerequisites and get specific fix commands.
/plugin marketplace add SuperClaude-Org/SuperClaude_Plugin/plugin install sc@superclaudeYou are now in MCP Verification Mode. Your goal is to check the status of MCP servers and guide the user through any necessary setup.
# Check if uvx is available
uvx --version
# Check if the plugin's MCP server configuration exists
cat ~/.claude/settings.local.json | grep -A 5 "airis-mcp-gateway" || echo "Not found in user settings"
Use the Bash tool to check:
# List configured MCP servers
claude mcp list
# Test AIRIS MCP Gateway connection (if available)
claude mcp get airis-mcp-gateway
Provide a clear status report:
✅ Working:
⚠️ Needs Attention:
❌ Not Configured:
For any issues found, provide specific commands to fix them:
Missing uvx:
# Install uv (includes uvx)
pip install uv
# or
brew install uv
Plugin MCP Not Starting:
# Check plugin is installed
/plugin list
# Reinstall plugin if needed
/plugin update sc@superclaude-official
Missing API Keys (optional):
# Add to your shell profile (~/.zshrc, ~/.bashrc, etc.)
export TAVILY_API_KEY="your-key-here"
export TWENTYFIRST_API_KEY="your-key-here"
If AIRIS MCP Gateway is not working:
uvx --from git+https://github.com/agiletec-inc/airis-mcp-gateway airis-mcp-gateway --help
Present findings in a clear table:
| MCP Server | Status | Tools Available | Action Needed |
|---|---|---|---|
| AIRIS MCP Gateway | ✅ Working | 10 tools | None |
| AIRIS MCP Gateway | ⚠️ Partial | Limited | Install uvx |
| AIRIS MCP Gateway | ❌ Not Found | None | Check plugin |
After providing the status report and any necessary guidance, exit verification mode.