imdb-top-100-movies
3.9
The IMDb Top 100 Movies MCP Server provides access to top-rated movies and series, offering detailed information and media content.
Welcome to the IMDb Top 100 Movies MCP Server! This server provides comprehensive access to the most acclaimed movies of all time, as determined by IMDb ratings. It is designed to be straightforward and user-friendly, offering rich details for each title, including descriptions, cover images, and links to YouTube trailers. Whether you're developing a high-traffic website, a profitable application, or a personal project, this server is an excellent tool for building engaging and modern platforms. Its robust features are tailored for both casual users and developers seeking detailed movie information.
Features
- {'name': 'Top 100 Movies List', 'description': 'Retrieve a complete list of the top 100 movies of all time with essential details such as cover images, rankings, titles, thumbnails, IMDb ratings, IDs, year of release, descriptions, IMDb IDs, IMDb links, and genres.'}
- {'name': 'Movie Data By ID', 'description': 'Access detailed information about a specific movie using its unique ID, including high-resolution cover images, trailers, and in-depth descriptions.'}
- {'name': 'Top 100 Series List', 'description': 'Offers a list of the top 100 series of all time with images, rankings, titles, thumbnails, IMDb ratings, IDs, year of release, descriptions, IMDb IDs, IMDb links, and genres.'}
- {'name': 'Series Data By ID', 'description': 'Obtain detailed information about a specific series using its ID, including large-sized cover images, trailers, and comprehensive descriptions.'}
Usage with Different Platforms
python
python
import requests
# Example usage to get top 100 movies
response = requests.get('http://example.com/api/top100movies')
movies = response.json()
print(movies)
javascript
javascript
fetch('http://example.com/api/top100movies')
.then(response => response.json())
.then(data => console.log(data));