Skip to main content
Glama
dnshtm9

kenari-media-mcp

by dnshtm9

Create Video

create_video

Generate AI videos by starting a Kenari video job with a text prompt. Returns a job ID to poll for status.

Instructions

Start a Kenari video job via POST /v1/videos/generations. Returns job id; poll with get_video_status/wait_for_video. Costs money.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
modelYesKenari video-generation model id. Call list_media_models (modality='video') first for exact ids and availability.
promptYesDescribe the video to generate.
durationNoClip length in seconds. Optional; capped by KENARI_MAX_VIDEO_DURATION (default 15).
image_urlNoOptional https or data: URL of an image to use as the first/start frame.
video_urlNoOptional https URL of a source video for video-to-video transforms.
resolutionNoOutput resolution, e.g. '720p' or '1080p'. Optional and model-dependent.
aspect_ratioNoAspect ratio, e.g. '16:9' or '9:16'. Optional and model-dependent.
input_imagesNoOptional list of https or data: image URLs to condition the video on.
end_image_urlNoOptional https or data: URL of an image to use as the final frame (interpolated transition).

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
idNoKenari video job id, when relevant to the result or error.
opNoTool operation name the error occurred in.
rawNoRaw Kenari API response object.
codeNoMachine-readable code: an error code (e.g. unauthorized, bad_request, upstream_error) or a state marker (e.g. rendering, done, still_rendering).
hintNoHuman-readable remediation hint (e.g. set KENARI_API_KEY).
modelNoKenari video model id used.
statusNoHTTP status number (on API errors) or the Kenari job status string (on video status results).
disabledNoTrue when video tools are disabled via KENARI_ALLOW_VIDEO=0.

Schema Changelog

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

  1. First observedv0.1.0

TDQS

A4.5/5.0
Behavior5/5

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

Annotations only say the tool is not read-only and not destructive, so the description carries the behavioral disclosure burden. It surfaces two non-obvious facts: the call starts an asynchronous job that only returns an id, and it costs money. Both are exactly the kind of hidden behavior an agent needs before calling a paid, async generation endpoint.

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 dense sentences carry all the essential information: action and endpoint first, then the critical follow-up behavior and cost warning. There is no filler, repetition of the schema, or unnecessary detail.

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 description is complete for a complex, paid, asynchronous tool: it identifies the job-based workflow, tells the agent how to track the result, and warns about cost. An output schema exists, so the description doesn't need to explain return values, and parameter details are already in the input schema.

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%, with each parameter already well documented, so the baseline is 3. The tool description adds no per-parameter semantics, but it also doesn't need to repeat what the schema already provides.

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 opens with a concrete verb and resource ('Start a Kenari video job') and names the exact endpoint, which clearly identifies the tool's role. It is immediately distinguishable from read/status siblings like get_video_status and wait_for_video, and from image-focused siblings.

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 gives clear context for when to call this tool: when starting a new video generation job. It also tells the agent what to do after invocation, poll via get_video_status/wait_for_video. It does not explicitly contrast with alternatives like extend_video or generate_image, but the phrase 'video job' plus the sibling names makes the intended usage unambiguous.

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

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/dnshtm9/kenari-media-mcp'

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