# JustWatch MCP Server — Streaming Search for AI (`longanimous_bracken/justwatch-content-tracker`) Actor

Extract trending movies and TV shows from JustWatch across 80+ countries with full streaming offers, prices, and availability data.

- **URL**: https://apify.com/longanimous\_bracken/justwatch-content-tracker.md
- **Developed by:** [petteri mähönen](https://apify.com/longanimous_bracken) (community)
- **Categories:** Other, MCP servers
- **Stats:** 2 total users, 1 monthly users, 100.0% runs succeeded, 0 bookmarks
- **User rating**: No ratings yet

## Pricing

from $1.00 / 1,000 results

This Actor is paid per event. You are not charged for the Apify platform usage, but only a fixed price for specific events.

Learn more: https://docs.apify.com/platform/actors/running/actors-in-store#pay-per-event

## What's an Apify Actor?

Actors are web data automations that power AI and operations. They run on the Apify platform to scrape websites, process data, connect APIs, and automate workflows.
In Batch mode, an Actor accepts a well-defined JSON input, performs an action which can take anything from a few seconds to a few hours,
and optionally produces a well-defined JSON output, datasets with results, or files in key-value store.
In Standby mode, an Actor provides a web server which can be used as a website, API, or an MCP server.
Actors are written with capital "A".

## How to integrate an Actor?

If asked about integration, you help developers integrate Actors into their projects.
You adapt to their stack and deliver integrations that are safe, well-documented, and production-ready.
The best way to integrate Actors is as follows.

- **AI agents and MCP clients** — the [Apify MCP server](https://docs.apify.com/integrations/mcp.md) at `https://mcp.apify.com` (remote, streamable HTTP, OAuth on first use).
- **Agentic workflows and local Actor development** — [Agent Skills](https://apify.com/.well-known/agent-skills/index.json) with the [Apify CLI](https://docs.apify.com/cli/docs.md): `npm install -g apify-cli`, then `apify login`.
- **JavaScript/TypeScript projects** — the official [JS/TS client](https://docs.apify.com/api/client/js/docs.md): `npm install apify-client`.
- **Python projects** — the official [Python client](https://docs.apify.com/api/client/python/docs.md): `pip install apify-client`.
- **Any other language** — the [REST API](https://docs.apify.com/api/v2.md).

For usage examples, see the [API](#api) section below.

For more details, see Apify documentation as [Markdown index](https://docs.apify.com/llms.txt) and [Markdown full-text](https://docs.apify.com/llms-full.txt).

# README

## JustWatch MCP Server — Streaming Search for AI

### 🧠 MCP Server — AI Agent Ready

This actor is a **Model Context Protocol (MCP) server** — AI assistants (Claude, GPT, Cursor) can call it directly to search and extract data:

```json
{"searchQuery": "example", "maxResults": 5}
```

Search movies and TV shows across streaming services. Returns pricing, availability, streaming platforms.

Extract trending movies and TV shows from [JustWatch](https://www.justwatch.com) with full streaming availability across 300+ platforms in 80+ countries.

### Features

- **Trending content** — what's popular right now, by country and content type
- **Full metadata** — title, year, duration, rating, genres, director, cast, poster, trailer
- **Streaming offers** — Netflix, Disney+, Amazon Prime, Apple TV, Hulu, and 300+ services
- **Offer details** — price, format (SD/HD/4K), audio/subtitle languages, Dolby Vision/HDR
- **Multi-country** — streaming availability varies by region; scrape any of 80+ supported countries
- **Filtering** — by content type, price type, streaming service, genre

### Input

| Field | Type | Default | Description |
|-------|------|---------|-------------|
| `content_type` | string | `"all"` | `"movie"`, `"tv"`, or `"all"` |
| `country` | string | `"us"` | Country code (us, de, uk, fr, es, it, etc.) |
| `genres` | string\[] | `[]` | Filter by genre (Action, Comedy, Drama, etc.) |
| `services` | string\[] | `[]` | Filter by streaming service (Netflix, Disney+, etc.) |
| `price_type` | string | `"all"` | `"free"`, `"rent"`, `"buy"`, `"subscribe"`, `"physical"`, `"all"` |
| `maxResults` | number | `20` | Max titles to extract. 0 = unlimited |

#### Examples

**Trending Netflix movies in US:**

```json
{
  "content_type": "movie",
  "country": "us",
  "services": ["Netflix"],
  "maxResults": 50
}
```

**Free TV shows to watch:**

```json
{
  "content_type": "tv",
  "price_type": "free",
  "maxResults": 30
}
```

**All trending content in Germany:**

```json
{
  "country": "de",
  "maxResults": 100
}
```

### Output

| Field | Type | Example |
|-------|------|---------|
| `title` | string | `"Inception"` |
| `title_type` | string | `"movie"` or `"tv"` |
| `url` | string | `"https://www.justwatch.com/us/movie/inception"` |
| `year` | string | `"2010"` |
| `duration` | string | `"PT2H28M0S"` |
| `rating` | number | `0.97` (0-1 scale) |
| `rating_count` | number | `32097` |
| `genres` | string\[] | `["Action & Adventure", "Science-Fiction"]` |
| `director` | string | `"Christopher Nolan"` |
| `cast` | string\[] | `["Leonardo DiCaprio", "Joseph Gordon-Levitt"]` |
| `content_rating` | string | `"TV-14"` |
| `country_of_origin` | string | `"United Kingdom"` |
| `description` | string | `"A brilliant thief is tasked with..."` |
| `poster` | string | image URL |
| `trailer_url` | string | `"https://www.youtube.com/..."` |
| `offers` | object\[] | Streaming/physical offers (see below) |
| `total_seasons` | number | `5` (TV shows only) |
| `seasons` | object\[] | `[{season_number, episodes, year}]` (TV shows only) |

#### Offer object

```json
{
  "service": "Netflix Standard with Ads",
  "type": "subscribe",
  "price": 8.99,
  "currency": "USD",
  "format": "HD",
  "audio_languages": ["en", "es", "fr"],
  "subtitle_languages": ["en", "es", "fr"],
  "video_technology": ["DOLBY_VISION"],
  "watch_url": "https://www.netflix.com/title/..."
}
```

### Performance

- \~0.5s per detail page (CheerioCrawler, no browser overhead)
- 256MB RAM — cheapest possible actor tier
- No proxy required

### Limitations

- Extracts **trending content only** — no keyword search. Filtering (genre, service, price) is done after extraction since JustWatch does not support combined filter URLs.
- Some older titles may have fewer streaming offers.

### Changelog

| Version | Date | Changes |
|---------|------|---------|
| 0.1 | 2026-07-16 | Cloud-verified: 20 items, 0 errors, ~4s runtime. Published to Store. |

# Actor input Schema

## `content_type` (type: `string`):

Filter by content type — movies, TV shows, or both.

## `country` (type: `string`):

Country code for streaming availability (us, de, uk, fr, es, it, etc.)

## `genres` (type: `array`):

Filter results by genre (e.g. Action, Comedy, Drama, Science-Fiction). Applied after extraction.

## `services` (type: `array`):

Filter offers by streaming service (e.g. Netflix, Disney+, Amazon Prime). Applied after extraction.

## `price_type` (type: `string`):

Filter offers by price type (free/rent/buy/subscribe). Applied after extraction.

## `maxResults` (type: `integer`):

Maximum number of titles to extract. 0 = unlimited.

## Actor input object example

```json
{
  "content_type": "all",
  "country": "us",
  "genres": [],
  "services": [],
  "price_type": "all",
  "maxResults": 20
}
```

# API

You can run this Actor programmatically using our API. Below are code examples in JavaScript, Python, and CLI, as well as the OpenAPI specification and MCP server setup.

## JavaScript example

```javascript
import { ApifyClient } from 'apify-client';

// Initialize the ApifyClient with your Apify API token
// Replace the '<YOUR_API_TOKEN>' with your token
const client = new ApifyClient({
    token: '<YOUR_API_TOKEN>',
});

// Prepare Actor input
const input = {};

// Run the Actor and wait for it to finish
const run = await client.actor("longanimous_bracken/justwatch-content-tracker").call(input);

// Fetch and print Actor results from the run's dataset (if any)
console.log('Results from dataset');
console.log(`💾 Check your data here: https://console.apify.com/storage/datasets/${run.defaultDatasetId}`);
const { items } = await client.dataset(run.defaultDatasetId).listItems();
items.forEach((item) => {
    console.dir(item);
});

// 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/js/docs

```

## Python example

```python
from apify_client import ApifyClient

# Initialize the ApifyClient with your Apify API token
# Replace '<YOUR_API_TOKEN>' with your token.
client = ApifyClient("<YOUR_API_TOKEN>")

# Prepare the Actor input
run_input = {}

# Run the Actor and wait for it to finish
run = client.actor("longanimous_bracken/justwatch-content-tracker").call(run_input=run_input)

# Fetch and print Actor results from the run's dataset (if there are any)
print("💾 Check your data here: https://console.apify.com/storage/datasets/" + run["defaultDatasetId"])
for item in client.dataset(run["defaultDatasetId"]).iterate_items():
    print(item)

# 📚 Want to learn more 📖? Go to → https://docs.apify.com/api/client/python/docs/quick-start

```

## CLI example

```bash
echo '{}' |
apify call longanimous_bracken/justwatch-content-tracker --silent --output-dataset

```

## MCP server setup

```json
{
    "mcpServers": {
        "apify": {
            "command": "npx",
            "args": [
                "mcp-remote",
                "https://mcp.apify.com/?tools=longanimous_bracken/justwatch-content-tracker",
                "--header",
                "Authorization: Bearer <YOUR_API_TOKEN>"
            ]
        }
    }
}

```

## OpenAPI specification

Download the OpenAPI definition: https://api.apify.com/v2/actors/VTB9cxWQGbdpuMawZ/builds/gelTUQzehyv7SrkjQ/openapi.json
