Skip to main content
Glama

Get By Title

get_by_title
Read-onlyIdempotent

Fetch a single title by exact name. Returns full record: rated, released, runtime, director, writer, cast, plot, awards, ratings (IMDB / RT / Metacritic), box office, IMDB ID, etc.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
plotNoshort | full (default short)
typeNomovie | series | episode
yearNoOptional release-year filter
titleYesExact title

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
plotYesPlot summary
typeYesType: movie, series, or episode
yearYesRelease year
ratedYesMPAA rating (G, PG, PG-13, R, etc.)
titleYesMovie/series/episode title
actorsYesArray of actor names
awardsYesAwards and nominations summary
genresYesArray of genre strings
posterYesPoster image URL
writerYesWriter name(s)
countryYesCountry/countries of origin
imdb_idYesIMDB ID (tt-prefixed)
ratingsYesArray of ratings from various sources
runtimeYesRuntime in minutes
directorYesDirector name(s)
imdb_urlYesDirect URL to IMDB title page
languageYesLanguage(s)
releasedYesRelease date
metascoreYesMetacritic score
box_officeYesBox office earnings
imdb_votesYesNumber of IMDB votes
productionYesProduction company
imdb_ratingYesIMDB rating (0-10)
total_seasonsYesTotal seasons (for series only)

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. Changed2 schema fields changed
    • addedInput schema / examples
      Added value: +[
      +  {
      +    "title": "The Shawshank Redemption"
      +  },
      +  {
      +    "plot": "full",
      +    "title": "The Office",
      +    "type": "series"
      +  }
      +]
    • changedOutput schema / (root)
      Previous value: -nullNew value: +{
      +  "properties": {
      +    "actors": {
      +      "description": "Array of actor names",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "awards": {
      +      "description": "Awards and nominations summary",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "box_office": {
      +      "description": "Box office earnings",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "country": {
      +      "description": "Country/countries of origin",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "director": {
      +      "description": "Director name(s)",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "genres": {
      +      "description": "Array of genre strings",
      +      "items": {
      +        "type": "string"
      +      },
      +      "type": "array"
      +    },
      +    "imdb_id": {
      +      "description": "IMDB ID (tt-prefixed)",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "imdb_rating": {
      +      "description": "IMDB rating (0-10)",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "imdb_url": {
      +      "description": "Direct URL to IMDB title page",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "imdb_votes": {
      +      "description": "Number of IMDB votes",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "language": {
      +      "description": "Language(s)",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "metascore": {
      +      "description": "Metacritic score",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "plot": {
      +      "description": "Plot summary",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "poster": {
      +      "description": "Poster image URL",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "production": {
      +      "description": "Production company",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "rated": {
      +      "description": "MPAA rating (G, PG, PG-13, R, etc.)",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "ratings": {
      +      "description": "Array of ratings from various sources",
      +      "items": {
      +        "properties": {
      +          "source": {
      +            "description": "Rating source (IMDB, Rotten Tomatoes, Metacritic)",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          },
      +          "value": {
      +            "description": "Rating value",
      +            "type": [
      +              "string",
      +              "null"
      +            ]
      +          }
      +        },
      +        "type": "object"
      +      },
      +      "type": "array"
      +    },
      +    "released": {
      +      "description": "Release date",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "runtime": {
      +      "description": "Runtime in minutes",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "title": {
      +      "description": "Movie/series/episode title",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "total_seasons": {
      +      "description": "Total seasons (for series only)",
      +      "type": [
      +        "number",
      +        "null"
      +      ]
      +    },
      +    "type": {
      +      "description": "Type: movie, series, or episode",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "writer": {
      +      "description": "Writer name(s)",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    },
      +    "year": {
      +      "description": "Release year",
      +      "type": [
      +        "string",
      +        "null"
      +      ]
      +    }
      +  },
      +  "required": [
      +    "title",
      +    "year",
      +    "rated",
      +    "released",
      +    "runtime",
      +    "genres",
      +    "director",
      +    "writer",
      +    "actors",
      +    "plot",
      +    "language",
      +    "country",
      +    "awards",
      +    "poster",
      +    "ratings",
      +    "metascore",
      +    "imdb_rating",
      +    "imdb_votes",
      +    "imdb_id",
      +    "type",
      +    "box_office",
      +    "production",
      +    "total_seasons",
      +    "imdb_url"
      +  ],
      +  "type": "object"
      +}
  2. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already declare readOnlyHint, openWorldHint, idempotentHint, and destructiveHint false. The description adds value by detailing the return fields (e.g., rated, released, runtime, cast, awards), which helps the agent understand the output. No contradictions.

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?

Two sentences: the first states the purpose and key constraint, the second lists the comprehensive return fields. No wasted words, front-loaded with the core action. Excellent structure.

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

Completeness5/5

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

Given the tool has only 4 parameters, a rich output schema, and full annotations, the description covers the essential purpose and return value. For a simple fetch-by-title tool, it is complete and leaves no ambiguity.

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?

The input schema has 100% coverage with descriptions for all 4 parameters. The description reinforces the 'exact name' constraint for the title parameter, but adds no new parameter-specific details beyond what the schema provides. 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 explicitly states 'Fetch a single title by exact name', specifying the verb (fetch), resource (single title), and identifier (exact name). It distinguishes from sibling tools like 'search_titles' (for fuzzy matching) and 'get_by_imdb_id' (for IMDB ID).

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

Usage Guidelines4/5

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

The description clearly indicates when to use the tool (when you have an exact title and need one result). It implicitly distinguishes from siblings by mentioning 'exact name', but does not explicitly list when not to use or provide direct alternatives. Still clear and helpful.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.6/5.0
Disambiguation2/5

Many tools have overlapping purposes, such as ask_pipeworx, ask_pipeworx_grounded, and deep_research all answering questions, and bet_research overlapping with polymarket_edges/arbitrage. The diverse tool set lacks clear boundaries.

Naming Consistency3/5

All names use snake_case, but verb patterns are inconsistent: some start with verbs (ask_pipeworx, remember) while others start with nouns (polymarket_arbitrage, entity_profile). Names vary widely in length and descriptiveness.

Tool Count2/5

33 tools is excessive for a server named 'Omdb', which implies a movie database. Most tools are unrelated to movies, indicating poor scoping for the server's purpose.

Completeness2/5

For the OMDb domain, only search and retrieval tools exist, with no create/update/delete operations. Overall, the tool set feels like a random collection with significant gaps relative to any coherent domain.