OpenSubtitles MCP Server
OfficialThe OpenSubtitles MCP Server provides comprehensive subtitle search, download, and file management through the OpenSubtitles API with a freemium model.
Core Features:
Search subtitles using movie title, IMDB/TMDB IDs, file hash, release year, language filters, and TV show season/episode information
Download subtitle files in multiple formats (SRT, ASS, VTT) with optional time shifts or FPS conversions
Calculate OpenSubtitles hashes for local movie files to enable exact subtitle matching
Advanced filtering by translation type (AI, machine), hearing impaired options, trusted sources, and foreign parts only
Flexible result ordering by language, download count, release date, or rating
Integration & Authentication:
Dual operational modes: HTTP mode for server deployments and n8n automation, Stdio mode for Claude Desktop
Authentication options: API key or OpenSubtitles account credentials
Rate limiting management with unlimited searches and download limits based on account status
Robust error handling for API limits, invalid keys, and missing files
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@OpenSubtitles MCP Serversearch subtitles for The Matrix 1999 in English"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
OpenSubtitles MCP Server
A TypeScript/Node.js-based MCP (Model Context Protocol) server for OpenSubtitles API integration. This server provides subtitle search and download functionality with a freemium model, using the Kong gateway at api.opensubtitles.com for all API management.
Features
Comprehensive Search: Search subtitles using all OpenSubtitles API parameters (title, IMDB ID, TMDB ID, file hash, etc.)
Multiple Download Formats: Support for SRT, ASS, and VTT subtitle formats
File Hash Calculation: Calculate OpenSubtitles hash for exact movie file matching
Rate Limiting: Integrated with Kong gateway for proper rate limiting
Freemium Model: Unlimited search, downloads limited by API key status
Related MCP server: Arr Suite MCP Server
Installation & Usage
The OpenSubtitles MCP Server supports three modes:
HTTP Mode: Web server for n8n workflows, browser access, and HTTP integrations
Stdio Mode (Local): Run locally for Claude Desktop integration
Stdio Mode (Remote): Connect to hosted server at mcp.opensubtitles.com
1. HTTP Mode (Recommended for Server Deployment)
Run as a web server on port 1620:
# Install dependencies
npm install
npm run build
# Start HTTP server
npm start
# or
PORT=1620 MCP_MODE=http node dist/index.jsAccess points:
Health Check:
http://localhost:1620/healthAPI Info:
http://localhost:1620/Web Interface:
http://localhost:1620/web(Browser UI - No Node.js required!)Direct API:
http://localhost:1620/proxy(POST requests)Tools List:
http://localhost:1620/tools(Schema discovery)MCP Endpoint:
http://localhost:1620/sse(Server-Sent Events)
2. Stdio Mode (For Claude Desktop)
Quick Start with npx
npx @opensubtitles/mcp-serverInstall via mcp-get
npx @michaellatman/mcp-get@latest install @opensubtitles/mcp-serverClaude Code Integration
For claude-code environments, you can add the server using the claude mcp add-json command:
claude mcp add-json "opensubtitles" '{"command":"npx","args":["-y","@opensubtitles/mcp-server@latest"],"env":{"MCP_MODE":"stdio","LOG_LEVEL":"info"},"disabled":false}'Claude Desktop Integration - Local Mode
Add to your Claude Desktop configuration:
{
"mcpServers": {
"opensubtitles": {
"command": "npx",
"args": ["-y", "@opensubtitles/mcp-server"],
"env": {
"MCP_MODE": "stdio",
"OPENSUBTITLES_USER_KEY": "your_api_key_here"
}
}
}
}Claude Desktop Integration - Remote Mode
Connect to the hosted server at mcp.opensubtitles.com:
{
"mcpServers": {
"opensubtitles": {
"command": "npx",
"args": ["-y", "@opensubtitles/mcp-server", "remote-proxy.js"]
}
}
}Or using the dedicated remote command:
{
"mcpServers": {
"opensubtitles": {
"command": "npx",
"args": ["-y", "mcp-opensubtitles-remote"]
}
}
}MCP Tools
1. search_subtitles
Search for subtitles with comprehensive parameter support:
Parameters:
query(string): Text search queryimdb_id(number): IMDB ID for exact matchingtmdb_id(number): TMDB ID for exact matchingparent_imdb_id(number): Parent IMDB ID for TV seriesparent_tmdb_id(number): Parent TMDB ID for TV seriesseason_number(number): Season number for TV episodesepisode_number(number): Episode number for TV episodesyear(number): Release yearmoviehash(string): OpenSubtitles file hash for exact matchingmoviebytesize(number): File size in bytes for hash matchinglanguages(string): Comma-separated language codes (e.g., 'en,es,fr')machine_translated(string): Include machine translated subtitlesai_translated(string): Include AI translated subtitleshearing_impaired(string): Include hearing impaired subtitlesforeign_parts_only(string): Include foreign parts onlytrusted_sources(string): Only trusted sourcesorder_by(string): Sort orderorder_direction(string): Sort direction (asc/desc)
Example:
await mcpClient.callTool("search_subtitles", {
query: "The Matrix",
year: 1999,
languages: "en"
});2. download_subtitle
Download subtitle content by ID:
Parameters:
subtitle_id(string, required): Subtitle ID from search resultsformat(string): Subtitle format (srt, ass, vtt) - defaults to 'srt'user_api_key(string): Optional user API key for authenticated downloads
Example:
await mcpClient.callTool("download_subtitle", {
subtitle_id: "123456",
format: "srt",
user_api_key: "your_api_key"
});3. calculate_file_hash
Calculate OpenSubtitles hash for local movie files:
Parameters:
file_path(string, required): Path to the movie file
Example:
await mcpClient.callTool("calculate_file_hash", {
file_path: "/path/to/movie.mkv"
});Usage Examples
Search by Movie Title
await mcpClient.callTool("search_subtitles", {
query: "Inception",
year: 2010,
languages: "en"
});Search by File Hash
// First calculate the hash
const hashResult = await mcpClient.callTool("calculate_file_hash", {
file_path: "/path/to/inception.mkv"
});
// Then search using the hash
await mcpClient.callTool("search_subtitles", {
moviehash: "8e245d9679d31e12",
moviebytesize: 12909756
});Search TV Show Episodes
await mcpClient.callTool("search_subtitles", {
parent_imdb_id: 944947, // Game of Thrones
season_number: 1,
episode_number: 5,
languages: "en"
});n8n Workflow Integration
The OpenSubtitles MCP Server has native n8n MCP client support for seamless workflow automation. Connect directly to the MCP server using n8n's built-in MCP client tools.
1. Start Server in HTTP Mode
First, start the MCP server in HTTP mode:
# Option 1: Use npm script (recommended)
npm start
# Option 2: Direct command with custom port
MCP_MODE=http PORT=1620 node dist/index.js
# Option 3: Using environment variables
export MCP_MODE=http
export PORT=1620
node dist/index.jsThe server will be available at:
Base URL:
http://localhost:1620Health Check:
http://localhost:1620/healthMCP Endpoint:
http://localhost:1620/message(Streamable HTTP)Force JSON:
http://localhost:1620/json(Plain JSON for debugging)Debug Info:
http://localhost:1620/debug(Server diagnostics)Legacy MCP:
http://localhost:1620/sse(Server-Sent Events)
2. n8n MCP Client Configuration
Using n8n Native MCP Client
Configure the n8n MCP Client Tool node:
Server URL:
http://localhost:1620/message(or your server URL)Transport: HTTP Streamable
Protocol: Model Context Protocol (MCP)
Search Subtitles with MCP Client
Configure the MCP Client node with these parameters:
{
"tool": "search_subtitles",
"arguments": {
"query": "The Matrix",
"year": 1999,
"languages": "en"
}
}Alternative: Direct HTTP Request
For manual HTTP integration, use HTTP Request node:
{
"method": "POST",
"url": "http://localhost:1620/message",
"headers": {
"Content-Type": "application/json"
},
"body": {
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "search_subtitles",
"arguments": {
"query": "The Matrix",
"year": 1999,
"languages": "en"
}
}
}
}Download Subtitle with MCP Client
{
"tool": "download_subtitle",
"arguments": {
"file_id": 123456,
"user_api_key": "{{ $env.OPENSUBTITLES_API_KEY }}"
}
}Calculate File Hash with MCP Client
{
"tool": "calculate_file_hash",
"arguments": {
"file_path": "/path/to/movie.mkv"
}
}3. n8n Workflow Examples
Basic Search Workflow
MCP Client Tool: Search for subtitles using movie title
Code Node: Parse search results and extract file IDs
MCP Client Tool: Download best matching subtitle
File System Node: Save subtitle to disk
Automated Processing Workflow
File Trigger: Monitor folder for new movie files
MCP Client Tool: Calculate file hash
MCP Client Tool: Search subtitles by hash for exact match
Conditional Node: Check if subtitles found
MCP Client Tool: Download subtitle if found
File System Node: Save subtitle next to movie file
Benefits of Native MCP Integration
Auto-discovery: Tools are automatically discovered via MCP protocol
Type Safety: Full schema validation for tool arguments
Error Handling: Proper MCP error responses
Tool Documentation: Inline help and parameter descriptions
JSON Compatibility: Automatic plain JSON responses for n8n clients
Debug Support: Built-in debugging endpoints for troubleshooting
Troubleshooting n8n Integration
If you encounter JSON parsing errors:
Try Force JSON Endpoint: Use
http://localhost:1620/jsoninstead of/messageCheck Debug Info: Visit
http://localhost:1620/debugto verify server statusVerify User-Agent: Server auto-detects n8n clients (node, n8n, langchain, mcpClientTool)
Check Logs: Look for "Sending plain JSON response for n8n compatibility" messages
4. Environment Variables for n8n
Set these environment variables in your n8n instance:
# OpenSubtitles API Key (optional but recommended)
OPENSUBTITLES_API_KEY=your_api_key_here
# MCP Server URL (if running on different host/port)
MCP_SERVER_URL=http://localhost:16205. Response Format
All n8n HTTP requests will receive JSON-RPC 2.0 responses:
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "Search results or download data..."
}
]
}
}6. Error Handling in n8n
Add error handling nodes to catch common issues:
Rate Limit (429): Retry after delay or notify user to get API key
Invalid API Key (401): Alert administrator to check API key
Network Errors: Retry mechanism or alternative endpoint
File Not Found: Skip processing or log error
7. Production Deployment
For production n8n workflows:
# Run MCP server as background service
nohup MCP_MODE=http PORT=1620 node dist/index.js > mcp-server.log 2>&1 &
# Or use PM2 for process management
pm2 start dist/index.js --name "opensubtitles-mcp" -- --env MCP_MODE=http PORT=1620
# Or use Docker
docker run -d -p 1620:1620 -e MCP_MODE=http opensubtitles-mcp-serverThis integration allows you to automate subtitle operations in n8n workflows, perfect for media processing pipelines, batch subtitle downloads, or automated movie library management.
Web Browser Interface
For users who don't want to install Node.js or configure MCP, we provide a full web interface:
Access
URL:
http://mcp.opensubtitles.com/webRequirements: Any modern web browser
No Installation: Works immediately without setup
Features
🔍 Search Subtitles: Search by title, year, IMDB ID, languages
💾 Download Subtitles: Download by file ID from search results
🔢 Calculate Hash: Generate OpenSubtitles hash for movie files
📊 Real-time Results: Instant feedback with formatted results
🎯 User-friendly: Clean interface with loading states and error handling
Direct HTTP API
For developers and automation:
# Search subtitles
curl -X POST http://mcp.opensubtitles.com/proxy \
-H "Content-Type: application/json" \
-d '{"tool": "search_subtitles", "arguments": {"query": "Matrix", "year": 1999}}'
# Download subtitle
curl -X POST http://mcp.opensubtitles.com/proxy \
-H "Content-Type: application/json" \
-d '{"tool": "download_subtitle", "arguments": {"file_id": 123456}}'
# List available tools
curl http://mcp.opensubtitles.com/toolsRate Limiting & API Keys
Anonymous Usage
Search: Unlimited
Downloads: 0 per day (Kong enforced)
With OpenSubtitles API Key
Search: Unlimited
Downloads: Based on your OpenSubtitles account quota
Getting an API Key
Register at OpenSubtitles.com
Get your free API key
Set the
OPENSUBTITLES_USER_KEYenvironment variable or pass it in tool calls
Development
Prerequisites
Node.js 18.0.0 or higher
TypeScript
Setup
git clone <repository>
cd mcp-opensubtitles
npm installBuilding
npm run buildDevelopment Commands
# HTTP Mode (Web Server)
npm run dev # Build and run HTTP server on port 1620
npm start # Run built HTTP server
# Stdio Mode (Claude Desktop)
npm run dev:stdio # Build and run stdio mode
npm start:stdio # Run built stdio mode
# Development with Auto-rebuild
npm run watchTesting
# For HTTP mode testing
curl http://localhost:1620/health # Health check
curl http://localhost:1620/ # API info
# For Stdio mode testing
npm test # Run evaluation tests
npm run inspector # Debug with MCP Inspector (stdio mode)
# MCP evaluation tests
npx mcp-eval evals/evals.ts dist/index.jsEnvironment Variables
OPENSUBTITLES_API_BASE=https://api.opensubtitles.com # Default Kong gateway
NODE_ENV=production
PORT=1620
OPENSUBTITLES_USER_KEY=your_api_key_here # OptionalArchitecture
The server uses a clean architecture with the following components:
MCP Server Core (
src/server.ts): Main MCP protocol implementationKong API Client (
src/api-client.ts): HTTP client for Kong gateway communicationTools (
src/tools/): Individual tool implementationsUtilities (
src/utils/): Helper functions for hash calculation
All API requests go through the Kong gateway at api.opensubtitles.com, which handles:
Rate limiting enforcement
API key validation
Request routing to OpenSubtitles API
Error handling and responses
Error Handling
The server provides helpful error messages for common scenarios:
Rate Limit Exceeded: "Download limit reached. Get your free API key at opensubtitles.com/api"
Invalid API Key: "Invalid API key. Please check your OpenSubtitles API key"
File Not Found: Clear file path validation messages
Network Errors: Descriptive network connectivity messages
Contributing
Fork the repository
Create a feature branch
Make your changes
Add tests for new functionality
Submit a pull request
License
MIT License - see LICENSE file for details
Support
Issues: Report bugs and feature requests on GitHub
API Documentation: OpenSubtitles API Docs
MCP Protocol: Model Context Protocol Documentation
Available Tools
3 toolscalculate_file_hashC
Calculate OpenSubtitles hash for local movie files
| Name | Required | Description | Default |
|---|---|---|---|
| file_path | Yes | Path to the movie file |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions 'calculate' but doesn't specify if this is a read-only operation, what the output format is (e.g., hash string), or any performance considerations like processing time for large files. This leaves significant gaps in understanding the tool's behavior.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that directly states the tool's purpose without any wasted words. It is appropriately sized and front-loaded, making it easy to understand at a glance.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the lack of annotations and output schema, the description is incomplete. It doesn't explain what the tool returns (e.g., a hash value), potential errors (e.g., file not found), or how the result might be used with sibling tools. For a tool with no structured behavioral data, this is inadequate.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with 'file_path' clearly documented as 'Path to the movie file'. The description adds no additional meaning beyond this, such as file format requirements or path syntax examples, but the schema adequately covers the parameter, meeting the baseline for high coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb 'calculate' and the resource 'OpenSubtitles hash for local movie files', making the purpose specific and understandable. However, it doesn't explicitly differentiate from sibling tools like 'download_subtitle' or 'search_subtitles', which are related but distinct operations.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 alternatives, such as whether it's for verifying file integrity or preparing for subtitle searches. It lacks context on prerequisites, like needing a local file, or exclusions, such as not working with remote files.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
download_subtitleC
Download subtitle content by file ID. Downloads in original format with force_download=true by default for direct file download.
| Name | Required | Description | Default |
|---|---|---|---|
| file_id | Yes | File ID from search results (found in files array of subtitle results) | |
| file_name | No | Desired file name for the downloaded subtitle | |
| in_fps | No | Input FPS for subtitle conversion (must use with out_fps) | |
| out_fps | No | Output FPS for subtitle conversion (must use with in_fps) | |
| timeshift | No | Time shift in seconds to add/remove (e.g. 2.5 or -1) | |
| force_download | No | Set subtitle file headers to 'application/force-download' for direct file download (default: true) | |
| user_api_key | No | Your OpenSubtitles API key for authenticated downloads | |
| username | No | OpenSubtitles.com username (alternative to API key) | |
| password | No | OpenSubtitles.com password (use with username) |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden of behavioral disclosure. It mentions the default 'force_download=true' and that it downloads 'in original format', which adds some context. However, it fails to disclose critical behaviors: authentication requirements (implied by parameters but not stated), rate limits, error handling, or what the output looks like (e.g., file data vs. metadata). For a download tool with 9 parameters, this is insufficient.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence that front-loads the core action ('Download subtitle content by file ID') and adds a useful detail about defaults. There's no wasted verbiage, and it's appropriately sized for the tool's complexity. However, it could be slightly more structured by separating the default behavior into a second sentence for clarity.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (9 parameters, no annotations, no output schema), the description is incomplete. It lacks information on authentication (though parameters hint at it), output format (e.g., binary file vs. text), error cases, and how parameters interact. Without annotations or output schema, the description should compensate more to guide the agent effectively, but it falls short.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, so the schema already documents all parameters thoroughly. The description adds minimal value beyond the schema: it implies 'file_id' is the primary identifier and mentions the default for 'force_download'. However, it doesn't explain relationships between parameters (e.g., 'in_fps' and 'out_fps' must be used together) or provide additional semantic context, meeting the baseline for high schema coverage.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the verb ('download') and resource ('subtitle content by file ID'), making the purpose unambiguous. It distinguishes from sibling tools like 'calculate_file_hash' and 'search_subtitles' by focusing on downloading rather than hashing or searching. However, it doesn't explicitly mention what distinguishes it from potential non-sibling alternatives beyond the basic action.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 alternatives. It mentions a default behavior ('force_download=true by default') but doesn't explain when to override this or when to use other tools like 'search_subtitles' first. There's no context about prerequisites or typical workflows, leaving the agent with no usage direction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_subtitlesC
Search for subtitles using OpenSubtitles API with comprehensive parameter support
| Name | Required | Description | Default |
|---|---|---|---|
| query | No | Text search query | |
| imdb_id | No | IMDB ID for exact movie/series matching | |
| tmdb_id | No | TMDB ID for exact movie/series matching | |
| parent_imdb_id | No | Parent IMDB ID for TV series | |
| parent_tmdb_id | No | Parent TMDB ID for TV series | |
| season_number | No | Season number for TV episodes | |
| episode_number | No | Episode number for TV episodes | |
| year | No | Release year | |
| moviehash | No | OpenSubtitles file hash for exact matching | |
| moviebytesize | No | File size in bytes for hash matching | |
| languages | No | Comma-separated language codes (e.g., 'en,es,fr') | |
| machine_translated | No | Include machine translated subtitles (exclude, include, only) | |
| ai_translated | No | Include AI translated subtitles (exclude, include, only) | |
| hearing_impaired | No | Include hearing impaired subtitles (exclude, include, only) | |
| foreign_parts_only | No | Include foreign parts only subtitles (exclude, include, only) | |
| trusted_sources | No | Only trusted sources (exclude, include, only) | |
| order_by | No | Sort order (language, download_count, new, rating) | |
| order_direction | No | Sort direction (asc, desc) | |
| username | No | OpenSubtitles.com username for authentication | |
| password | No | OpenSubtitles.com password for authentication |
TDQS
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the full burden of behavioral disclosure. It mentions 'OpenSubtitles API' and 'comprehensive parameter support,' but fails to describe critical behaviors: authentication requirements (implied by username/password parameters), rate limits, pagination, error handling, or the nature of search results (e.g., list of subtitle entries). For a tool with 20 parameters and no annotations, this is a significant gap in transparency.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single, efficient sentence: 'Search for subtitles using OpenSubtitles API with comprehensive parameter support.' It is front-loaded with the core action and API context, with no wasted words. Every part earns its place by conveying essential information concisely.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool's complexity (20 parameters, no annotations, no output schema), the description is incomplete. It lacks details on authentication, rate limits, result format, and usage scenarios. While the schema covers parameters well, the description does not compensate for missing behavioral and output context, making it inadequate for guiding an agent effectively in this rich environment.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The input schema has 100% description coverage, with each parameter well-documented (e.g., 'Text search query' for 'query', 'IMDB ID for exact movie/series matching' for 'imdb_id'). The description adds minimal value beyond this, only noting 'comprehensive parameter support' without explaining parameter interactions or usage patterns. With high schema coverage, the baseline score of 3 is appropriate, as the schema does the heavy lifting.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: 'Search for subtitles using OpenSubtitles API with comprehensive parameter support.' It specifies the verb ('search'), resource ('subtitles'), and API source ('OpenSubtitles API'), making the action clear. However, it does not explicitly differentiate from sibling tools like 'download_subtitle' or 'calculate_file_hash,' which would require mentioning that this is for searching/filtering rather than downloading or hashing.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
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 alternatives. It mentions 'comprehensive parameter support' but does not specify scenarios, prerequisites (e.g., authentication needs), or comparisons to sibling tools like 'download_subtitle' for retrieval or 'calculate_file_hash' for matching. This leaves the agent without context for tool selection.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Tool Schema Changelog
Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.
1 tool update
v1.0.0- Changed
download_subtitle2 fields changed- changed
Input schema / properties / force_download / descriptionPrevious value: -"Set subtitle file headers to force download"New value: +"Set subtitle file headers to 'application/force-download' for direct file download (default: true)" - removed
Input schema / properties / sub_formatRemoved value: -{ - "description": "Subtitle format (from /infos/formats endpoint, e.g. srt, ass, vtt)", - "type": "string" -}
3 tool updates
- First observed
calculate_file_hash - First observed
download_subtitle - First observed
search_subtitles
TDQS
Each tool has a clearly distinct purpose: calculate_file_hash for local file processing, search_subtitles for finding subtitles via API, and download_subtitle for retrieving specific subtitle files. There is no overlap in functionality, making tool selection unambiguous for an agent.
All tools follow a consistent verb_noun pattern with snake_case naming (calculate_file_hash, download_subtitle, search_subtitles). The naming is predictable and readable throughout the set.
With only 3 tools, the server feels thin for the OpenSubtitles domain, which typically involves more operations like uploading subtitles, managing user accounts, or handling subtitle formats. While core functions are covered, the count is borderline minimal.
The tools cover the essential workflow: hash calculation for identification, searching for subtitles, and downloading them. However, there are minor gaps such as no upload or management tools, which agents might need for full subtitle lifecycle coverage but can work around.
Maintenance
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
OMDb MCP — IMDB-derived movie / TV / episode data (BYO key)
Fetch transcripts, subtitles, chapters, metadata and frames from YouTube and 10+ video platforms
Search YouTube, read video metadata, and fetch transcripts with language preferences
1Convert subtitles, transcripts, broadcast captions (SCC/MCC/STL), EDLs, and Premiere files.
Related MCP Servers
- AlicenseAqualityCmaintenanceFetches YouTube video subtitles and transcripts with support for multiple languages and output formats (SRT, VTT, TXT, JSON).119Apache 2.0
- AlicenseNot gradedqualityCmaintenanceEnables AI assistants to manage media automation services like Sonarr, Radarr, Prowlarr, Bazarr, Overseerr, and Plex through natural language commands.7MIT
- AlicenseBqualityFmaintenanceEnables natural language interaction with MoviePilot media library automation, supporting search, discovery, subscription management, download control, and media status queries.109MIT
- FlicenseNot gradedqualityCmaintenanceEnables AI assistants to manage TV shows and movies via Sonarr and Radarr, including searching, adding, and monitoring downloads.-
Appeared in Searches
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/opensubtitles/mcp.opensubtitles.com'
If you have feedback or need assistance with the MCP directory API, please join our Discord server