Skip to main content
Glama

Enhanced Dash MCP Server

start-dash-mcp-tmux.shโ€ข1.3 kB
#!/bin/bash # Start Dash MCP Server in tmux session SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )" SESSION_NAME="dash-mcp" # Check if session already exists if tmux has-session -t "$SESSION_NAME" 2>/dev/null; then echo "๐Ÿ“บ Tmux session '$SESSION_NAME' already exists" echo "๐Ÿ”— Attach with: tmux attach -t $SESSION_NAME" echo "โŒ Kill existing session with: tmux kill-session -t $SESSION_NAME" exit 1 fi # Test server configuration first echo "๐Ÿงช Testing server configuration..." cd "$SCRIPT_DIR" source venv/bin/activate python3 enhanced_dash_server.py --test if [ $? -eq 0 ]; then # Create new tmux session echo "" echo "๐Ÿš€ Starting Dash MCP Server in tmux session '$SESSION_NAME'..." tmux new-session -d -s "$SESSION_NAME" -c "$SCRIPT_DIR" './start-dash-mcp.sh' echo "โœ… Dash MCP Server started in tmux session '$SESSION_NAME'" echo "๐Ÿ”— Attach with: tmux attach -t $SESSION_NAME" echo "๐Ÿ“‹ List sessions: tmux list-sessions" echo "โŒ Stop server: tmux kill-session -t $SESSION_NAME" echo "โ„น๏ธ Note: Server is running in background and waiting for MCP client connection" else echo "โŒ Server test failed. Please check the configuration before starting tmux session." exit 1 fi

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/joshuadanpeterson/enhanced-dash-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server