unogs
The uNoGS MCP Server provides a comprehensive solution for searching and retrieving Netflix catalog data across all countries where Netflix operates.
The uNoGS MCP Server allows users to effortlessly search and access detailed information from the global Netflix catalog. With the release of version 2, the server has been redesigned to offer enhanced performance and functionality. It provides users with the ability to search for Netflix titles globally, retrieve detailed title information, search for people involved in Netflix productions, and access data on deleted titles. Additionally, it offers static data on genres and supported countries, updated daily. This server is ideal for developers, researchers, and Netflix enthusiasts who wish to conduct in-depth searches and analyses of Netflix's global catalog.
Features
- Global Netflix Search: Access Netflix title information for every country where Netflix is available.
- Detailed Title Information: Retrieve specific details such as Netflix ID, country availability, seasons, episodes, and more.
- Search for People: Find information about actors, directors, and other personnel involved in Netflix titles.
- Deleted Titles: Search for titles that have been removed from the Netflix catalog by country or title name.
- Static Data: Access static lists of genres and supported countries, updated daily.
MCP Tools
- Search Titles: Search for titles based on various parameters such as date range, rating, country, person, order, and more.
- Search People: Look up individuals associated with Netflix titles by title name, person name, or Netflix ID.
- Search Deleted: Identify titles that have been deleted from the catalog by country or title name, with the ability to specify date ranges.
- Static Genres: Retrieve a static list of genres, updated daily.
- Static Countries: Get a static list of supported countries where Netflix operates.
- Title Genres: Access all genres associated with a specific title.
- Title Images: Retrieve all images related to a title.
- Title Details: Get general details associated with a specific title.
- Title Episodes: Access information on all episodes associated with a title.
- Title Countries: Retrieve country and language information for a specific title.
Usage with Different Platforms
python
python
import requests
url = 'https://unogs-mcp-server/api/search'
params = {
'query': 'Stranger Things',
'country': 'US'
}
response = requests.get(url, params=params)
data = response.json()
print(data)
nodejs
javascript
const axios = require('axios');
const url = 'https://unogs-mcp-server/api/search';
const params = {
query: 'Stranger Things',
country: 'US'
};
axios.get(url, { params })
.then(response => {
console.log(response.data);
})
.catch(error => {
console.error(error);
});