Skip to main content
Glama

Futurama Quote Machine MCP Server

by BitsofJeremy
install.sh2.08 kB
#!/bin/bash # Futurama Quote Machine MCP Server - Quick Installation Script # This script sets up everything you need to get started set -e # Exit on any error echo "🚀 Setting up Futurama Quote Machine MCP Server..." echo # Check if Python is installed if ! command -v python3 &> /dev/null; then echo "❌ Python 3 is not installed." echo "Please install Python 3.8 or newer from https://python.org" exit 1 fi # Check Python version PYTHON_VERSION=$(python3 -c 'import sys; print(f"{sys.version_info.major}.{sys.version_info.minor}")') echo "✅ Found Python $PYTHON_VERSION" # Create virtual environment if it doesn't exist if [ ! -d "venv" ]; then echo "📦 Creating virtual environment..." python3 -m venv venv else echo "✅ Virtual environment already exists" fi # Activate virtual environment echo "🔧 Activating virtual environment..." source venv/bin/activate # Install dependencies echo "📚 Installing dependencies..." pip install --quiet mcp httpx # Make run script executable echo "🔐 Making run script executable..." chmod +x run_server.sh # Test the server briefly echo "🧪 Testing server..." timeout 2s ./run_server.sh &>/dev/null && echo "✅ Server test passed" || echo "⚠️ Server test completed (expected timeout)" # Get the full path to this directory FULL_PATH=$(pwd) echo echo "🎉 Installation complete!" echo echo "Next steps:" echo "1. Copy this path: $FULL_PATH/run_server.sh" echo "2. Add it to your Claude Desktop configuration:" echo echo " Mac: ~/Library/Application Support/Claude/claude_desktop_config.json" echo " Windows: %APPDATA%\\Claude\\claude_desktop_config.json" echo echo "3. Use this configuration:" echo ' {' echo ' "mcpServers": {' echo ' "futurama-quote-machine": {' echo " \"command\": \"$FULL_PATH/run_server.sh\"," echo ' "args": [],' echo ' "env": {}' echo ' }' echo ' }' echo ' }' echo echo "4. Restart Claude Desktop" echo "5. Try: 'Get me a random Futurama quote'" echo echo "🔧 Need help? Check the README.md file!"

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/BitsofJeremy/fqm_mcp_server'

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