suche
Server Details
Search Blu-ray and 4K UHD movies, featured titles, and detailed movie information.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 3.8/5 across 7 of 7 tools scored. Lowest: 2.9/5.
Each tool serves a distinct purpose: browsing by tag, by year/genre, featured movies, detailed info, similar movies, listing tags, and search. No two tools overlap in functionality.
All tools follow a consistent verb_noun pattern in lowercase snake_case, making them predictable and easy to distinguish.
7 tools is a reasonable count for a movie discovery server. It covers the core functions without being too few or too many, though it could be expanded.
The tool set covers browsing, searching, details, similarities, and tag management. Missing user or admin actions, but for a read-only API it's fairly complete.
Available Tools
7 toolsbrowse_by_tagAInspect
Browse Blu-ray movies by category/tag (e.g. "weihnachtsfilme", "action", "klassiker"). Use list_tags to discover available tags.
| Name | Required | Description | Default |
|---|---|---|---|
| tag | Yes | The tag slug (URL-friendly identifier, e.g. 'weihnachtsfilme', 'action') | |
| limit | No | Maximum number of results (1-25, default 10) |
Tool Definition Quality
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 only states the core function without mentioning read-only nature, rate limits, authentication, or output format. This is insufficient for a tool with no annotations.
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?
Two concise sentences with no fluff. The core function is stated first, and the guidance to use list_tags is appended. Every sentence earns its place.
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 simplicity (2 parameters, no output schema), the description adequately covers the basic usage and context via the sibling reference. However, some details about pagination or return format could enhance completeness.
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 coverage is 100%, so the schema already describes both parameters (tag slug and limit). The description adds minimal additional meaning beyond naming the concept of 'category/tag'. Baseline 3 is appropriate.
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 ('Browse'), resource ('Blu-ray movies'), and method ('by category/tag'). It also mentions 'list_tags' to discover tags, helping distinguish from sibling like 'browse_movies'.
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 explicitly instructs users to 'Use list_tags to discover available tags', providing clear context for when to use this tool. However, it does not explicitly state when not to use it compared to siblings like 'search_movies'.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
browse_moviesAInspect
Browse Blu-ray movies filtered by release year (exact or range) and/or genre. At least one filter is required.
| Name | Required | Description | Default |
|---|---|---|---|
| year | No | Exact release year (e.g. 1999) | |
| genre | No | Genre to filter by (e.g. 'Science Fiction', 'Action') | |
| limit | No | Maximum number of results (1-25, default 10) | |
| yearTo | No | End of release year range (inclusive) | |
| yearFrom | No | Start of release year range (inclusive) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description must disclose behavior; it implies a read-only browsing operation and the filter requirement, but omits details like pagination, rate limits, or error 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?
Two concise sentences, front-loaded with the action and constraint, with no redundant information.
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 5 parameters, no output schema, and no annotations, the description covers the purpose and critical constraint but lacks details on return format, default limit, sorting, or behavior when multiple filters are combined.
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 coverage is 100%, so baseline is 3; the description reiterates filtering by year/range and genre but adds no new detail beyond what the parameter descriptions already provide (e.g., inclusivity of ranges).
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 browses Blu-ray movies with filtering by year (exact or range) and/or genre, which distinctly sets it apart from siblings like search_movies or browse_by_tag.
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?
It specifies the required condition 'At least one filter is required,' guiding the agent on when to use the tool, but lacks explicit mention of alternatives or when not to use it.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_featured_moviesCInspect
Get the currently featured and recommended Blu-ray movies.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (1-20, default 8) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations exist, so the description carries the full burden. It does not reveal behavioral traits like whether the operation is read-only, if it requires authentication, or what the response structure is. The word 'get' weakly implies idempotence, but is not explicit.
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 concise sentence with no unnecessary words. It efficiently communicates the core purpose.
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?
Despite the tool being simple with one optional parameter and no output schema, the description lacks details about the return format, whether results are paginated, and the exact nature of featured vs recommended. The phrase 'currently featured and recommended Blu-ray movies' is ambiguous about scope.
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 already covers the single parameter 'limit' with a complete description and constraints (1-20, default 8). The tool description adds no additional semantic value beyond what the schema provides, so a baseline score of 3 is appropriate.
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 it retrieves featured and recommended Blu-ray movies, distinguishing it from sibling tools like browse_movies (general browsing) and search_movies (searching). The verb 'get' and noun phrase are specific, but could be more precise about whether 'featured' and 'recommended' are distinct concepts.
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?
No guidance is provided on when to use this tool versus alternatives such as browse_movies or search_movies. The description lacks any context about preferred use cases or exclusion criteria.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_movie_detailsAInspect
Get detailed information about a specific movie including cast, trailer, and external links.
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The movie slug (URL-friendly identifier, e.g. 'matrix-1999') |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations provided, the description carries the full burden. It disclosures the tool is a read operation returning detailed movie information. While it doesn't explicitly state it's non-destructive, the nature is clear. More context on data freshness or response size could improve, but it's adequate.
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, well-structured sentence that front-loads the purpose and includes specific content hints. No unnecessary words or repetitions.
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 has only one parameter and no output schema, the description provides a good overview of inputs and outputs. It lists examples of the return content (cast, trailer, external links), though a more formal output specification would be beneficial but not critical for this simple tool.
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 coverage is 100% and the schema already documents the single parameter 'slug' with a clear description. The tool description adds no further meaning beyond confirming the tool retrieves data for 'a specific movie'. Baseline score applies.
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 action ('Get detailed information'), the resource ('a specific movie'), and lists key content ('cast, trailer, external links'). It distinguishes itself from sibling tools like 'search_movies' or 'get_similar_movies' by focusing on details for one known movie.
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 implies usage when you have a specific movie slug and want full details, but it lacks explicit guidance on when not to use it or how it compares to siblings such as 'get_similar_movies' or 'browse_movies'. No exclusions or alternatives are mentioned.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_similar_moviesAInspect
Get movies that are similar or related to a specific movie (e.g. same series, same theme).
| Name | Required | Description | Default |
|---|---|---|---|
| slug | Yes | The movie slug (URL-friendly identifier, e.g. 'matrix-1999') | |
| limit | No | Maximum number of results (1-20, default 8) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are present, so the description carries the full burden. It clarifies that the tool is a read operation ('Get') and adds context about what 'similar' means (series/theme). However, it does not disclose any potential side effects, rate limits, or authentication requirements. The description is adequate but not thorough.
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, well-formed sentence with an illustrative example. It contains no unnecessary words and is front-loaded with the core purpose.
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?
For a simple tool with two parameters and no output schema, the description and schema provide sufficient context. It explains what 'similar' means and the parameters are clear. A hint about the format of returned movies would enhance completeness, but it is not critical.
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%, meaning both 'slug' and 'limit' are fully described in the schema. The tool description adds no extra parameter information beyond the schema. Thus, the baseline score is appropriate.
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 action ('Get') and resource ('movies that are similar or related'), with examples ('same series, same theme'). It distinguishes from sibling tools like browse_movies and search_movies by focusing on similarity, not general browsing or searching.
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 implies usage when the user wants to find movies similar to a specific one, such as within a series or theme. It does not explicitly mention when not to use it or alternatives, but the context of 'similar' differentiates it well. Minor lack of explicit negative guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_tagsAInspect
List all available movie categories/tags with the number of movies in each. Use the returned slugs with browse_by_tag.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It reveals that the tool returns tags with movie counts, which is a useful behavioral detail. Lacks mention of pagination or sorting, but for a simple list this is adequate.
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?
Two concise sentences, no unnecessary words. Front-loads the core purpose, then provides usage guidance. Every sentence earns its place.
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 no output schema, the description explains return content (tags with counts) and usage. The tool is simple and the description fully covers what an agent needs to invoke it correctly.
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 tool has zero parameters, full schema coverage. The description adds no parameter info, but none is needed. Perfectly matches the schema.
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 lists all available movie categories/tags with movie counts, using specific verb 'list' and resource 'movie categories/tags'. It distinguishes from sibling 'browse_by_tag' which uses slugs.
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?
Explicitly tells when to use the tool: to get slugs for use with 'browse_by_tag'. This provides clear context and differentiates from siblings that browse or search movies.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
search_moviesBInspect
Search the Blu-ray movie database by title, director, actor, or keywords.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | Maximum number of results (1-25, default 10) | |
| query | Yes | Search query (movie title, director, actor, or keywords) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations provided, so description carries full burden. It only describes the search action without disclosing behavioral traits like authentication needs, rate limits, or handling of no results.
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?
A single, focused sentence with no unnecessary words. Perfectly concise.
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?
For a search tool with two parameters, the description is adequate but lacks details like case sensitivity, fuzzy matching, or pagination. Given no output schema, more context would help completeness.
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 coverage is 100% with clear descriptions for both parameters. The description adds no new semantic value beyond what the schema already provides; it reinforces the query types but does not exceed the schema.
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 it searches a movie database by various criteria. It distinguishes from sibling tools that browse or get specific results, though it does not explicitly differentiate.
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?
No guidance on when to use this tool versus siblings like browse_by_tag or get_similar_movies. The description only states what it does, not when it is appropriate.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!