AMC MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PYTHONPATH | No | Set to /app/src for proper module resolution | /app/src |
| MCP_LOG_LEVEL | No | Set logging level (DEBUG, INFO, WARNING, ERROR) | |
| PYTHONUNBUFFERED | No | Set to 1 for real-time logging | 1 |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Server capabilities have not been inspected yet.
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_now_showingB | Returns a list of movies currently showing in a given city or ZIP code. Args: location: City, state or ZIP code (e.g., "Boston, MA") Returns: JSON string with list of movies |
| get_recommendationsB | Suggests movies based on mood, genre, or time preferences. Args: genre: Movie genre (optional, e.g., "action", "comedy") mood: Mood description (optional, e.g., "exciting", "romantic") time_preference: Time of day preference (optional, e.g., "evening") Returns: JSON string with movie recommendations |
| get_showtimesA | Fetches available showtimes for a specific movie and location. Args: movie_id: Movie ID (e.g., "mv001") date: Date in YYYY-MM-DD format (e.g., "2025-10-28") location: City, state or ZIP code Returns: JSON string with available showtimes |
| get_seat_mapA | Displays available and reserved seats for a specific showtime. Args: showtime_id: Showtime ID (e.g., "st001") Returns: JSON string with seat availability map |
| book_seatsC | Reserves selected seats for the user. Args: showtime_id: Showtime ID (e.g., "st001") seats: List of seat numbers (e.g., ["A5", "A6"]) user_id: User identifier Returns: JSON string with booking confirmation |
| process_paymentB | Handles simulated payment transaction. Args: booking_id: Booking ID from book_seats payment_method: Payment method (e.g., "card", "cash") amount: Payment amount in USD Returns: JSON string with payment confirmation and receipt |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 6 tools
Each tool has a clearly distinct purpose within the movie theater booking domain. book_seats handles seat reservations, get_now_showing lists current movies, get_recommendations suggests films, get_seat_map shows seat availability, get_showtimes fetches screening times, and process_payment handles transactions. There is no overlap or ambiguity between these functions.
All six tools follow a consistent verb_noun naming pattern with snake_case. The verbs are appropriate and descriptive: 'book', 'get' (used four times consistently), and 'process'. This uniformity makes the tool set predictable and easy to understand.
With 6 tools, this server is well-scoped for its movie theater booking purpose. It covers the essential workflow from discovery (get_now_showing, get_recommendations) to booking (get_showtimes, get_seat_map, book_seats) to payment (process_payment). Each tool earns its place without being excessive or insufficient.
The tool set covers the core movie booking workflow comprehensively, from discovery to payment. However, there are minor gaps: no tools for canceling bookings, updating reservations, or managing user profiles. These are not critical failures but represent areas where agents might need workarounds.