An MCP server that helps users plan, select, book, and pay for AMC movie experiences
Project description
AMC MCP Server ๐ฌ
An Model Context Protocol (MCP) server that provides a comprehensive movie booking experience for AMC Theatres. This server enables conversational AI assistants to help users discover movies, find showtimes, book seats, and process payments through a simple API interface.
Features โจ
- Movie Discovery: Browse currently showing movies and get personalized recommendations
- Showtime Lookup: Find available showtimes by location, date, and movie
- Seat Selection: View interactive seat maps and check availability
- Booking Management: Reserve seats with real-time availability checking
- Payment Processing: Handle mock payment transactions with confirmation receipts
- Multi-location Support: Search across multiple AMC theater locations
Quick Start ๐
Prerequisites
- Python 3.8+
- Docker (optional, for containerized deployment)
Installation
Option 1: Local Installation
- Clone the repository:
git clone <repository-url>
cd amc-mcp
- Install dependencies:
pip install -r requirements.txt
- Install the package:
pip install -e .
- Run the server:
python -m amc_mcp.fastmcp_server
Option 2: Docker Deployment
- Build and run with Docker Compose:
docker-compose up --build
- Or build and run manually:
docker build -t amc-mcp .
docker run -it amc-mcp
MCP Tools Reference ๐ ๏ธ
1. get_now_showing
Returns a list of movies currently showing in a given location.
Input:
{
"location": "Boston, MA"
}
Output:
{
"location": "Boston, MA",
"movies": [
{
"movie_id": "mv001",
"title": "Dune: Part Two",
"rating": "PG-13",
"duration": 166,
"genre": "Sci-Fi/Action",
"description": "Paul Atreides unites with Chani..."
}
]
}
2. get_recommendations
Suggests movies based on mood, genre, or preferences.
Input:
{
"genre": "action",
"mood": "exciting"
}
Output:
{
"criteria": {"genre": "action", "mood": "exciting"},
"recommendations": [...]
}
3. get_showtimes
Fetches available showtimes for a specific movie and location.
Input:
{
"movie_id": "mv001",
"date": "2025-10-28",
"location": "Boston, MA"
}
Output:
{
"movie": {"id": "mv001", "title": "Dune: Part Two"},
"date": "2025-10-28",
"location": "Boston, MA",
"showtimes": [
{
"showtime_id": "st001",
"theater_name": "AMC Boston Common 19",
"theater_address": "175 Tremont Street",
"time": "14:00",
"format": "IMAX",
"price": 18.50
}
]
}
4. get_seat_map
Displays available and reserved seats for a specific showtime.
Input:
{
"showtime_id": "st001"
}
Output:
{
"showtime_id": "st001",
"movie": "Dune: Part Two",
"theater": "AMC Boston Common 19",
"date": "2025-10-28",
"time": "14:00",
"seat_map": [
{
"seat_number": "A5",
"row": "A",
"column": 5,
"is_available": true,
"price_tier": "Standard",
"price": 18.50
}
]
}
5. book_seats
Reserves selected seats for the user.
Input:
{
"showtime_id": "st001",
"seats": ["A5", "A6"],
"user_id": "user123"
}
Output:
{
"booking_id": "booking-uuid",
"status": "pending",
"movie": "Dune: Part Two",
"theater": "AMC Boston Common 19",
"date": "2025-10-28",
"time": "14:00",
"seats": ["A5", "A6"],
"total_price": 37.00
}
6. process_payment
Handles simulated payment transaction.
Input:
{
"booking_id": "booking-uuid",
"payment_method": "card",
"amount": 37.00
}
Output:
{
"payment_id": "payment-uuid",
"payment_status": "success",
"booking_id": "booking-uuid",
"receipt_url": "https://amc.com/receipts/payment-uuid",
"confirmation": {
"movie": "Dune: Part Two",
"theater": "AMC Boston Common 19",
"date": "2025-10-28",
"time": "14:00",
"seats": ["A5", "A6"],
"total_paid": 37.00
}
}
Example Conversation Flow ๐ฌ
Here's how a typical movie booking conversation would work:
-
User: "Find an action movie near me tonight."
- Server calls:
get_now_showing+get_recommendations - Returns: List of action movies with showtimes
- Server calls:
-
User: "Book two seats for Dune: Part Two at 8 PM."
- Server calls:
get_showtimesโget_seat_mapโbook_seats - Returns: Seat selection and booking confirmation
- Server calls:
-
User: "Pay with my card."
- Server calls:
process_payment - Returns: Payment confirmation with digital receipt
- Server calls:
Architecture ๐๏ธ
amc-mcp/
โโโ src/
โ โโโ amc_mcp/
โ โโโ __init__.py
โ โโโ server.py # Main MCP server implementation
โโโ data/
โ โโโ movies.json # Movie catalog
โ โโโ theaters.json # Theater locations
โ โโโ showtimes.json # Showtime schedules
โ โโโ seats.json # Seat maps by showtime
โโโ config/
โ โโโ nginx.conf # Web server configuration
โโโ Dockerfile # Container configuration
โโโ docker-compose.yml # Multi-service orchestration
โโโ requirements.txt # Python dependencies
โโโ pyproject.toml # Package configuration
โโโ README.md # This file
Data Models ๐
Movie
{
"movie_id": str,
"title": str,
"rating": str, # PG, PG-13, R, etc.
"duration": int, # Minutes
"genre": str,
"description": str,
"poster_url": str
}
Theater
{
"theater_id": str,
"name": str,
"address": str,
"city": str,
"state": str,
"zip_code": str
}
Showtime
{
"showtime_id": str,
"movie_id": str,
"theater_id": str,
"date": str, # YYYY-MM-DD
"time": str, # HH:MM
"format": str, # Standard, IMAX, 3D, Dolby
"price": float
}
Development ๐จโ๐ป
Adding New Movies
Edit data/movies.json to add new movies:
{
"movie_id": "mv011",
"title": "New Movie Title",
"rating": "PG-13",
"duration": 120,
"genre": "Action",
"description": "Description of the movie...",
"poster_url": "https://example.com/poster.jpg"
}
Adding New Theaters
Edit data/theaters.json:
{
"theater_id": "th011",
"name": "AMC New Location 15",
"address": "123 Main Street",
"city": "New City",
"state": "NY",
"zip_code": "12345"
}
Adding Showtimes
Edit data/showtimes.json and data/seats.json to add new showtimes and corresponding seat maps.
Testing
Manual Testing
You can test individual tools using the MCP inspector or by connecting to any MCP-compatible client.
Testing with Claude Desktop
- Configure Claude Desktop to connect to your MCP server
- Use natural language to test the booking flow
- Example: "Find me a sci-fi movie showing tonight in Boston"
Configuration โ๏ธ
Environment Variables
PYTHONPATH: Set to/app/srcfor proper module resolutionPYTHONUNBUFFERED: Set to1for real-time loggingMCP_LOG_LEVEL: Set logging level (DEBUG, INFO, WARNING, ERROR)
Docker Configuration
The server runs in a lightweight Python 3.11 container with:
- Non-root user for security
- Health checks for monitoring
- Volume mounts for data persistence
- Network isolation
Security Considerations ๐
This is a mock implementation for demonstration purposes. In production:
- Payment Processing: Integrate with real payment gateways (Stripe, PayPal)
- Authentication: Add user authentication and authorization
- Data Validation: Implement comprehensive input validation
- Rate Limiting: Add API rate limiting
- Encryption: Use HTTPS and encrypt sensitive data
- Database: Replace JSON files with a real database
- Logging: Implement structured logging and monitoring
Future Enhancements ๐ฎ
- Real AMC API Integration: Connect to actual AMC Theatres API
- User Accounts: Persistent user profiles and booking history
- Group Bookings: Support for multiple users booking together
- Loyalty Programs: AMC Stubs integration
- Mobile Tickets: Generate QR codes for mobile entry
- Seat Recommendations: AI-powered optimal seat suggestions
- Price Alerts: Notify users of discounts and promotions
- Social Features: Share movie plans with friends
- Accessibility: ADA-compliant seat selection
- Multi-language: International language support
Contributing ๐ค
- Fork the repository
- Create a feature branch:
git checkout -b feature/new-feature - Make your changes and add tests
- Commit your changes:
git commit -am 'Add new feature' - Push to the branch:
git push origin feature/new-feature - Submit a pull request
License ๐
This project is licensed under the MIT License - see the LICENSE file for details.
Support ๐ฌ
For questions, issues, or feature requests:
- Create an issue in the GitHub repository
- Check the documentation for common solutions
- Review the example conversation flows
Happy movie booking! ๐ฟ๐ฌ
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file amc_mcp_fastmcp-0.1.1.tar.gz.
File metadata
- Download URL: amc_mcp_fastmcp-0.1.1.tar.gz
- Upload date:
- Size: 15.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6bd2b3e5a619b400a4c27d016bcf68404f0f6663f4781986b4cd5cfd03c2187d
|
|
| MD5 |
7c6fc595564f0ac2d0cfa4e8ee85dcf9
|
|
| BLAKE2b-256 |
f9909d7510c8f6054354ded6029d230d2620b83239bd96974db90ead05eb9621
|
File details
Details for the file amc_mcp_fastmcp-0.1.1-py3-none-any.whl.
File metadata
- Download URL: amc_mcp_fastmcp-0.1.1-py3-none-any.whl
- Upload date:
- Size: 14.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.8.22
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
366631feae997b8aff5fde73d66733ac413c20b7ac9933788df10a84475496bd
|
|
| MD5 |
10a41c04f36a336c9fb19a0cc6628fd7
|
|
| BLAKE2b-256 |
aa12d00c3639dc341c1ee0375137efeced30e7dcfebb65ea8d46517e5e645a64
|