Skip to main content
Glama

create_channel

Create a new video channel workspace with a chosen name, content DNA, language, aspect ratio, and visual style. This sets the channel's content rules to organize AI-generated video production on yzturkey.com.

Instructions

Create a new channel (workspace) in yzturkey.com.

Args: name: Name of the channel (e.g. 'Tarih Meraklısı' or 'Daily Tech Shorts'). channel_context: Channel DNA instruction defining the tone, style, niche, and content rules. visual_style_id: Optional ID of the visual style preset to use for this channel. aspect_ratio: Video aspect ratio, typically '9:16' (Shorts/Reels/TikTok) or '16:9' (YouTube). language: Primary language code ('tr' for Turkish, 'en' for English). description: Brief description of the channel.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
languageNotr
descriptionNo
aspect_ratioNo9:16
channel_contextNo
visual_style_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior2/5

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 states that a channel is created but does not mention permissions, side effects, uniqueness constraints, whether creation is reversible, or what is returned on success. For a mutation-oriented tool, this is a meaningful gap.

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 front-loaded with the core purpose and then uses a compact Args list to document all six parameters without unnecessary prose. Every line adds meaningful information, and there is no filler or repetition.

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

Completeness4/5

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

Given the output schema exists and all six parameters are explained with examples, the description is largely complete for invoking the tool correctly. The only notable omission is any explicit guidance on prerequisite conditions or expected post-creation behavior, but the presence of an output schema partially mitigates this.

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?

Schema description coverage is 0%, so the description must compensate for the schema's lack of explanatory text. It does so thoroughly: each parameter gets an explanation, examples for name, typical values for aspect_ratio, language code guidance, and a clear definition of channel_context.

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 first sentence states a specific verb and resource: 'Create a new channel (workspace) in yzturkey.com.' It clearly distinguishes the action from sibling tools like list_channels, get_channel_details, and update_channel_settings by naming the create operation on a channel/workspace.

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 frames this as the creation action, so an agent can infer when to use it versus update_channel_settings or get_channel_details. It does not explicitly name alternatives or state 'do not use for updating existing channels,' but the context is unambiguous.

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