imdb146

imdb146

3.4

The IMDb146 MCP server provides comprehensive access to movie, TV, and celebrity content.

The IMDb146 MCP server is designed to provide comprehensive access to a vast array of movie, TV, and celebrity content. As the most authoritative source for entertainment data, this server allows you to retrieve ratings, reviews, and detailed information about the latest movies and TV shows. With IMDb146, you can explore various features, interact with different tools, and obtain precise results through its versatile endpoints. Whether you're looking for specific content details or a broad search capability, IMDb146 has you covered.

Features

  • {'name': 'Find (Search)', 'description': 'Perform searches to find content based on a query.'}
  • {'name': 'Title Details', 'description': 'Retrieve detailed information about a specific title.'}
  • {'name': 'Name Details', 'description': 'Access detailed information about a specific person.'}
  • {'name': 'Video Details', 'description': 'Get detailed information about a specific video.'}
  • {'name': 'News Details', 'description': 'Obtain detailed information about specific news articles.'}

Usage with Different Platforms

python

python
import requests

url = 'https://api.imdb146.com/title/details'
params = {'id': 'tt1234567'}
response = requests.get(url, params=params)
data = response.json()
print(data)

javascript

javascript
fetch('https://api.imdb146.com/title/details?id=tt1234567')
  .then(response => response.json())
  .then(data => console.log(data));