Skip to main content
Glama
kkrizka

MCP JustWatch Server

by kkrizka

MCP JustWatch Server

A Model Context Protocol (MCP) server built to provide access to JustWatch streaming availability data. Search for movies and TV shows and find out where they're available to stream across different platforms and countries.

Features

  • Search Content: Search for movies and TV shows by title with detailed metadata

  • Streaming Availability: Get comprehensive information about where content is available to stream

  • Multi-Country Support: Query streaming availability across multiple countries simultaneously

  • Detailed Information: Access IMDb/TMDb scores, genres, runtime, release dates, and more

  • Offer Details: Get pricing, quality (HD/4K), and direct URLs to streaming platforms

Related MCP server: TMDB MCP Server

Technology Stack

This server is built using:

Installation

Prerequisites

  • Python 3.11 or higher

  • pip or uv package manager

From Release

Skip to "As an MCP Server" as a section to automatically download the package inside common MCP clients.

From Source

  1. Clone the repository:

git clone <repository-url>
cd mcp-justwatch
  1. Install the package:

pip install -e .

For Development

Install with development dependencies:

pip install -e ".[dev]"

Usage

As an MCP Server

This server is designed to be used with MCP clients. Add it to your MCP client configuration:

Claude Desktop Configuration

Add to your claude_desktop_config.json to automatically download the package at the start of the session using uvx.

{
  "mcpServers": {
    "justwatch": {
      "command": "uvx",
      "args": ["mcp-justwatch", "python", "-m", "mcp_justwatch.server"]
    }
  }
}

Or if installed in a virtual environment:

{
  "mcpServers": {
    "justwatch": {
      "command": "/path/to/venv/bin/python",
      "args": ["-m", "mcp_justwatch.server"]
    }
  }
}

Other MCP Hosts

See the mcphost-config.yaml example file for configuration with other MCP hosts.

Development

Running Tests

pytest

Code Formatting

Format code with Black:

black src tests

Lint with Ruff:

ruff check src tests

Contributing

Contributions are welcome! Please feel free to submit a Pull Request.

Disclaimer

This project uses the simple-justwatch-python-api, an unofficial JustWatch API wrapper. This API is in no way affiliated, associated, authorized, endorsed by, or in any way officially connected with JustWatch. This is an independent and unofficial project. Use at your own risk and discretion.

Available Tools

3 tools
get_detailsA

Get detailed information about a specific movie or TV show using its JustWatch node ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
node_idYesThe JustWatch node ID (obtained from search results, e.g., 'tm12345')
countryNoTwo-letter ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'DE')US
languageNoISO 639-1 language code (e.g., 'en', 'es', 'fr')en
best_onlyNoReturn only best quality offers per platform

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.6/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations exist, and the description only states 'Get detailed information' without disclosing behavioral traits such as authentication, rate limits, or scope of data; minimal transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Single concise sentence with no extraneous information, efficiently conveying purpose and key detail about node_id origin.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Tool is simple with 4 parameters and output schema; description adequately covers purpose and input requirement, but could add more context on node_id acquisition.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%; description adds no extra meaning beyond what's in the parameter descriptions, meeting baseline of 3.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states it retrieves detailed information about a movie/TV show using a JustWatch node ID, distinguishing it from sibling tools like get_offers_for_countries and search_content.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Implies use after obtaining node_id from search results but lacks explicit guidance on when to use vs. siblings or when not to use.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_offers_for_countriesB

Get streaming offers for specific content across multiple countries.

ParametersJSON Schema
NameRequiredDescriptionDefault
node_idYesThe JustWatch node ID (from search results)
countriesYesList of two-letter country codes (e.g., ['US', 'GB', 'CA', 'AU'])
languageNoISO 639-1 language code (e.g., 'en', 'es', 'fr')en
best_onlyNoReturn only best quality offers per platform

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description bears full burden of behavioral disclosure. It does not mention what the offers contain, whether there are limits, pagination, or side effects. The description is too sparse to inform an agent about behavioral traits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single concise sentence with no redundant phrasing. It is efficient, though it could include a bit more context without becoming verbose.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given 4 parameters, an output schema, and sibling tools, the description is too brief. It does not explain that node_id comes from search_content, that countries should be ISO codes, or the effect of best_only. The agent lacks sufficient context to use the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100% so baseline is 3. The description adds no extra meaning beyond the schema; it does not explain how to obtain node_id or what the country codes require. Thus it meets but does not exceed the baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description 'Get streaming offers for specific content across multiple countries' clearly states the verb (get) and resource (streaming offers), and implies scope (multiple countries). It distinguishes from sibling tools 'get_details' and 'search_content' which serve different purposes.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for retrieving offers across multiple countries after obtaining a node_id, but does not explicitly state when to use it versus alternatives, nor does it mention prerequisites like first using 'search_content' to get a node_id.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_contentB

Search for movies and TV shows on JustWatch with streaming availability.

ParametersJSON Schema
NameRequiredDescriptionDefault
queryYesThe title to search for (movie or TV show)
countryNoTwo-letter ISO 3166-1 alpha-2 country code (e.g., 'US', 'GB', 'DE')US
languageNoISO 639-1 language code (e.g., 'en', 'es', 'fr')en
countNoMaximum number of results to return (1-20)
best_onlyNoReturn only best quality offers per platform

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

B3.4/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, and the description does not disclose behavioral traits such as side effects, authentication requirements, rate limits, or what happens when no results are found. For a read-only search, this is a significant gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, well-structured sentence that immediately conveys the tool's purpose without any extraneous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema (not shown but indicated), the description is sufficient for a simple search tool. However, additional context about streaming availability interpretation could be helpful.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% with descriptions for all parameters. The description adds no additional meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'search', the resource 'movies and TV shows', and a distinctive aspect 'with streaming availability' on JustWatch. It effectively distinguishes from siblings like get_details and get_offers_for_countries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus its siblings (get_details, get_offers_for_countries) or any scenarios where it is appropriate or not.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A3.8/5.0
Disambiguation5/5

Each tool has a distinct purpose: search finds content, get_details provides detailed info, and get_offers_for_countries gives streaming offers across countries. No overlap.

Naming Consistency5/5

All tools use a consistent verb_noun snake_case pattern (get_details, get_offers_for_countries, search_content), making them predictable.

Tool Count5/5

Three tools is appropriate for a content discovery and streaming info server, covering the essential operations without bloat.

Completeness4/5

The set covers search, details, and multi-country offers, which are core. Minor missing features like per-country offers or trending content, but overall adequate.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    Not graded
    maintenance
    Provides access to The Movie Database (TMDB) API for searching movies, retrieving movie details, cast information, and browsing current, upcoming, popular, and top-rated films, as well as searching for actors and directors.
    63
  • A
    license
    A
    quality
    C
    maintenance
    Provides access to The Movie Database (TMDB) API, enabling users to search for movies, TV shows, and people, get detailed information, discover content with advanced filters, and retrieve recommendations.
    13
    63
    5
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Enables searching for movies and TV shows, viewing cast details, exploring actor bios and filmographies, checking streaming availability, and cross-referencing actor work against Netflix's catalog.

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/kkrizka/mcp-justwatch'

If you have feedback or need assistance with the MCP directory API, please join our Discord server