Skip to main content
Glama
rollecode

Rollekino MCP server

Official
by rollecode

search_films

Read-onlyIdempotent

Find films by entering a full or partial title. Returns matching film IDs, which are required to access detailed film information in the Rollekino archive.

Instructions

Find films by title.

Start here when you know the name. Returns the id needed by get_film.

Args: title: Part of the film's title. limit: How many matches to return.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
limitNo
titleYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.6/5.0
Behavior4/5

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

The annotations already declare readOnly, openWorld, idempotent, and non-destructive behavior. The description adds value beyond that by clarifying partial-title matching ('Part of the film's title') and the tool's role as a provider of ids to get_film. No contradiction with annotations exists.

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 compact and well-structured: a one-line purpose, a usage pointer, a result note, and an Args block. Every sentence earns its place, and no information is buried or repeated from the schema.

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?

The tool is simple, has an output schema, and its annotations cover safety. The description adds the missing context: when to start, what the title parameter accepts, and how the result connects to get_film. Nothing essential is missing for correct invocation.

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

Parameters5/5

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

With 0% schema description coverage, the description fully compensates by explaining both parameters: title is a partial title match, and limit controls how many matches to return. This adds real semantic meaning beyond the raw schema types and defaults.

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 states a specific verb and resource ('Find films by title') and immediately clarifies the intended entry point ('Start here when you know the name'). It differentiates itself from siblings like list_films and get_film by framing the tool as the id-lookup step before get_film.

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?

It explicitly tells the agent when to use this tool ('Start here when you know the name') and what to do with the result ('Returns the id needed by get_film'). It does not explicitly state when not to use it or name alternatives like list_films, so it stops short of a 5.

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