claude-code-ultimate-guide/examples/skills/ccboard/commands/mcp-status.md
Florian BRUNIAUX e504f0d1bf feat: add session summary screenshot, skills, and GitHub templates
- 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>
2026-02-15 20:55:16 +01:00

68 lines
1.6 KiB
Markdown

---
name: mcp-status
description: Open ccboard MCP servers tab
category: 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 configuration
- `o` : Reveal config in finder
- `r` : Refresh server status
## Usage
```bash
# Open MCP tab directly
/mcp-status
# Alternative: run with tab argument
ccboard --tab mcp
```
## MCP Tab Navigation
- `h/j/k/l` or `←/→/↑/↓` : Navigate
- `Enter` : Focus detail pane
- `e` : Edit `~/.claude/claude_desktop_config.json`
- `o` : Reveal config file
- `r` : 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
```bash
#!/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.