GitPedia

MCU Countdown

When is the next MCU film? A simple but powerful API wrapper for TMDB lists. Self-hostable with Docker Compose

From DiljotSG·Updated June 11, 2026·View on GitHub·

When is the next MCU film? A simple but powerful API wrapper for TMDB lists. The project is written primarily in Python, distributed under the GNU General Public License v3.0 license, first published in 2020. Key topics include: api, docker, docker-compose, flask, home-lab.

Latest release: v2.0.19
March 27, 2026View Changelog →

MCU-Countdown

When is the next MCU film? A simple but powerful API wrapper for TMDB lists.

Screenshot

<img width="1137" height="1028" alt="image" src="https://github.com/user-attachments/assets/5271cec4-28ab-47be-9719-207f338ab51e" />

Production API Endpoint: https://www.whenisthenextmcufilm.com

Running with Docker

The app can be run and self-hosted using Docker Compose.

Create a docker-compose.yml.

Docker Compose

bash
# Set your TMDB API key or set it in a .env file export TMDB_API_KEY=your_api_key_here # Run the app docker compose up -d

The app will be available at http://localhost:5000

Building Image with Docker

bash
# Build the image docker build -t mcu-countdown . # Run the container docker run -p 5000:5000 -e TMDB_API_KEY=your_api_key_here mcu-countdown

Quick Start

Default MCU Usage

bash
# Get the next MCU production curl https://www.whenisthenextmcufilm.com/api

Named Routes for Alternative collections

Custom List Usage

Note: You can view any TMDB list at: https://www.themoviedb.org/list/YOUR_LIST_ID

bash
# Use any TMDB list by ID curl "https://www.whenisthenextmcufilm.com/api?list_id=YOUR_LIST_ID"

With Date Parameter

bash
# Get the next production after a specific date curl "https://www.whenisthenextmcufilm.com/api?date=2025-01-01" # Combine with custom list curl "https://www.whenisthenextmcufilm.com/api?date=2025-01-01&list_id=YOUR_LIST_ID"

Documentation

Example Response

json
{ "id": 533535, "title": "Deadpool & Wolverine", "type": "Movie", "release_date": "2024-07-24", "days_until": 289, "overview": "A listless Wade Wilson toils away in civilian life...", "poster_url": "https://image.tmdb.org/t/p/w500/8cdWjvZQUExUUTzyp4t6EDMubfO.jpg", "following_production": { "id": 912649, "title": "Venom: The Last Dance", "type": "Movie", "release_date": "2024-10-22", "days_until": 379, "overview": "Eddie and Venom are on the run...", "poster_url": "https://image.tmdb.org/t/p/w500/..." } }

Contributing

Contributions are welcome! Please feel free to open a PR with your changes!

License

See LICENSE file for details.

Credits

Special thanks to TMDB for their excellent API.

Contributors

Showing top 3 contributors by commit count.

View all contributors on GitHub →

This article is auto-generated from DiljotSG/MCU-Countdown via the GitHub API.Last fetched: 6/14/2026