- Add session-summary-v3.png screenshot for hook documentation - Add GitHub issue templates (bug report, feature request, question) - Add new skills: ccboard, guide-recap, landing-page-generator, release-notes-generator, skill-creator Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1.6 KiB
1.6 KiB
| name | description | category |
|---|---|---|
| mcp-status | Open ccboard MCP servers tab | monitoring |
MCP Status Command
Launch ccboard and jump directly to the MCP servers management tab.
Features
- Server List: All configured MCP servers from
claude_desktop_config.json - Status Detection: Live status (● Running, ○ Stopped, ? Unknown)
- Server Details: Full command, arguments, environment variables
- Quick Actions:
e: Edit MCP configurationo: Reveal config in finderr: Refresh server status
Usage
# Open MCP tab directly
/mcp-status
# Alternative: run with tab argument
ccboard --tab mcp
MCP Tab Navigation
h/j/k/lor←/→/↑/↓: NavigateEnter: Focus detail panee: Edit~/.claude/claude_desktop_config.jsono: Reveal config filer: Refresh server status
Server Status
- ● Green : Server process is running
- ○ Red : Server process is stopped
- ? Gray : Status unknown (Windows or detection failed)
Requirements
ccboard must be installed. Run /ccboard-install if needed.
Implementation
#!/bin/bash
# Check if ccboard is installed
if ! command -v ccboard &> /dev/null; then
echo "❌ ccboard is not installed"
echo "Run: /ccboard-install"
exit 1
fi
# Launch ccboard with MCP tab (tab index 7, accessible with '8' key)
# For now, launch and user presses '8'
# TODO: Add --tab flag to ccboard CLI in future version
exec ccboard
Note: Currently launches ccboard in dashboard view. Press 8 to access MCP tab.
Future version will support ccboard --tab mcp for direct access.