Movie Booking MCP Server
Check Google Calendar for conflicts on a given date and time before booking a movie ticket.
Search for movies currently in theaters using the IMDb API via RapidAPI, returning ratings, genres, and show times.
Click on "Deploy Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Movie Booking MCP ServerIs 'Inception' playing in Mumbai?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
🎬 Movie Booking MCP Server
A Model Context Protocol (MCP) server that lets Claude Desktop search for movies, check your Google Calendar, and book tickets — all through natural conversation.
✨ Features
Search movies via IMDb (RapidAPI) with real ratings, genres, and show times
Check calendar conflicts via Google Calendar before booking
Book tickets with a confirmed booking ID, seat type, and INR pricing
Demo mode — works out of the box without any API keys
Related MCP server: Movie Booking Assistant
🗂️ Project Structure
C:\AI_CODES\MCP\
├── server.py ← MCP server (3 tools)
├── .env ← API keys (never commit this)
├── requirements.txt ← Python dependencies
└── venv\ ← Virtual environment⚡ Quick Start
1. Clone & set up environment
cd C:\AI_CODES\MCP
python -m venv venv
venv\Scripts\activate
pip install mcp fastmcp requests python-dotenv2. Create .env
RAPIDAPI_KEY=your_rapidapi_key_here
GOOGLE_CALENDAR_ID=primaryNo API key? Leave
RAPIDAPI_KEYblank — the server automatically uses built-in demo data.
3. Configure Claude Desktop
Add to %APPDATA%\Claude\claude_desktop_config.json:
{
"mcpServers": {
"movie-booking": {
"command": "C:\\AI_CODES\\MCP\\venv\\Scripts\\python.exe",
"args": ["-u", "C:\\AI_CODES\\MCP\\server.py"]
}
}
}4. Restart Claude Desktop
The server should appear with a green running badge under Settings → Developer → Local MCP Servers.
🛠️ Tools
Tool | Description |
| Search IMDb for movies by name and city |
| Check Google Calendar for conflicts on a date/time |
| Confirm a booking and get a unique booking ID |
Seat Types & Pricing
Type | Price (INR) |
| ₹ 200 |
| ₹ 350 |
| ₹ 500 |
💬 Example Prompts
Is "Inception" playing in Mumbai?Am I free on June 20, 2025 at 8 PM for a movie?Search for "Interstellar" in Hyderabad, check if I'm free on
June 25 at 8 PM, and book 2 premium tickets if the slot is clear.🔧 How @mcp.tool() Works
Each tool is a plain Python function decorated with @mcp.tool(). FastMCP automatically:
Generates a JSON schema from the type hints
Uses the docstring as the tool description Claude reads
Handles serialisation of the returned dict to JSON
@mcp.tool()
def search_movies(movie_name: str, city: str = "Mumbai") -> dict:
"""
Search for movies currently in theaters using the IMDb API.
Args:
movie_name: The name of the movie to search for.
city: City to find local show times (default: Mumbai).
"""
# ...The server runs over stdio — no HTTP server or open port needed.
🔑 Getting a RapidAPI Key
Sign up at rapidapi.com
Subscribe to IMDb8 API (free tier)
Subscribe to Google Calendar API
Copy your key and paste it into
.env
🐛 Troubleshooting
Symptom | Fix |
Server not appearing in Claude | Fully quit & restart Claude Desktop; check JSON config syntax |
| Activate venv, run |
| Expected — set key in |
HTTP 401 / 403 | Invalid |
HTTP 429 | Rate limit hit — wait 1 minute |
"You've hit your message limit" | Claude Desktop usage cap — not a server issue; wait for reset |
📄 License
MIT
This server cannot be deployed
Maintenance
Related MCP Connectors
Booking gateway for AI agents — discover events, movies & hotels, hand off to partner checkout.
Connects ChatGPT to your Apple Calendar via a local Mac agent + Vercel relay
Schedule and manage Google Calendar events directly from your workspace. Check availability, view…
Calendar API for AI agents: events, availability, Google/Microsoft setup, scheduling, and iCal.
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides a comprehensive movie booking experience for AMC Theatres, enabling users to discover movies, find showtimes, select seats, and process payments through conversational AI. Supports multi-location theater search with real-time seat availability and booking management.61MIT
- FlicenseNot gradedqualityDmaintenanceProvides a suite of tools for searching movies, checking showtimes, and managing ticket bookings for Bangalore cinemas. It enables AI clients to handle end-to-end movie theater interactions including seat availability checks and reservation management.-
- AlicenseAqualityCmaintenanceEnables conversational AI assistants to help users discover movies, find showtimes, book seats, and process payments for AMC Theatres through a simple API interface.6MIT
- FlicenseNot gradedqualityBmaintenanceEnables users to query PVR/INOX cinema showtimes, live seat availability, and booking status across India, and to set up watch alerts for when shows become bookable or desired seats free up.-