Skip to main content
Glama

Futurama Quote Machine MCP Server

by BitsofJeremy
install.bat1.78 kB
@echo off REM Futurama Quote Machine MCP Server - Quick Installation Script for Windows REM This script sets up everything you need to get started echo 🚀 Setting up Futurama Quote Machine MCP Server... echo. REM Check if Python is installed python --version >nul 2>&1 if errorlevel 1 ( echo ❌ Python is not installed. echo Please install Python 3.8 or newer from https://python.org pause exit /b 1 ) REM Check Python version for /f "tokens=2" %%i in ('python --version 2^>^&1') do set PYTHON_VERSION=%%i echo ✅ Found Python %PYTHON_VERSION% REM Create virtual environment if it doesn't exist if not exist "venv" ( echo 📦 Creating virtual environment... python -m venv venv ) else ( echo ✅ Virtual environment already exists ) REM Activate virtual environment echo 🔧 Activating virtual environment... call venv\Scripts\activate.bat REM Install dependencies echo 📚 Installing dependencies... pip install --quiet mcp httpx REM Test the server briefly echo 🧪 Testing server... timeout /t 2 >nul && echo ✅ Server test completed REM Get the full path to this directory set FULL_PATH=%CD% echo. echo 🎉 Installation complete! echo. echo Next steps: echo 1. Copy this path: %FULL_PATH%\run_server.bat echo 2. Add it to your Claude Desktop configuration: echo. 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.bat", 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! echo. pause

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