mcp-office-tools/view_dashboard.sh
Ryan Malloy 31948d6ffc
Some checks are pending
Test Dashboard / test-and-dashboard (push) Waiting to run
Rename package to mcwaddams
Named for Milton Waddams, who was relocated to the basement with
boxes of legacy documents. He handles the .doc and .xls files from
1997 that nobody else wants to touch.

- Rename package from mcp-office-tools to mcwaddams
- Update author to Ryan Malloy
- Update all imports and references
- Add Office Space themed README narrative
- All 53 tests passing
2026-01-11 11:35:35 -07:00

23 lines
720 B
Bash
Executable File

#!/bin/bash
# Quick script to open the test dashboard in browser
DASHBOARD_PATH="/home/rpm/claude/mcwaddams/reports/test_dashboard.html"
echo "📊 Opening MCP Office Tools Test Dashboard..."
echo "Dashboard: $DASHBOARD_PATH"
echo ""
# Try different browser commands based on what's available
if command -v xdg-open &> /dev/null; then
xdg-open "$DASHBOARD_PATH"
elif command -v firefox &> /dev/null; then
firefox "$DASHBOARD_PATH" &
elif command -v chromium &> /dev/null; then
chromium "$DASHBOARD_PATH" &
elif command -v google-chrome &> /dev/null; then
google-chrome "$DASHBOARD_PATH" &
else
echo "⚠️ No browser command found. Please open manually:"
echo " file://$DASHBOARD_PATH"
fi