Skip to main content
Glama

Add scripts to the content plan

add_scripts_to_plan

Put finished scripts into the user's Daily Studio content plan, each with the day it should go out. Use this when the user asks you to PLAN — a week, a month, a series — rather than to hand them something to record right now. The plan lives on their account: it shows up in the app, on dailystudio.app/plan, and stays there. Calling this twice with the same scripts is safe; duplicates are skipped. Requires a connected Daily Studio account with the plan turned on. To record something immediately, use send_script_to_teleprompter instead — that is a delivery, this is a plan.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
scriptsYesThe scripts to add, in the order they should sit in the plan.
collectionNoOptional name for this batch as a group — a topic ('Customer questions'), a series ('Framing, part 1-5'), or what the week is about. The scripts show up grouped under it in the app and on the web, which is how somebody finds them again later. Use one when the scripts belong together; leave it out for a handful of unrelated ones.

TDQS

A4.6/5.0
Behavior4/5

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

Annotations are all false, so the description carries the burden. It discloses that the action is non-destructive and idempotent: 'Calling this twice with the same scripts is safe; duplicates are skipped.' It also mentions the persistence: 'it shows up in the app, on dailystudio.app/plan, and stays there.' It does not mention any failure modes or side effects, but given the annotations provide no hints, this is still strong coverage. A minor deduction for not explicitly stating that it modifies the plan but that is implied.

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 three sentences that open with the action, then provide usage context, a warning about idempotency, and a comparison to an alternative. Every sentence contributes meaning. It is front-loaded with the purpose and scannable. No filler or redundancy.

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 tool has no output schema and the annotations are all false, the description must explain what happens. It covers the outcome (scripts appear in the plan), the idempotency (duplicates skipped), the prerequisite (connected account), and the alternative (teleprompter). It does not describe what a successful response looks like, but since there is no output schema, that is acceptable. The complexity is moderate (2 params, nested array), and the description is thorough. A slight deduction for not specifying error cases (e.g., what if account not connected?) but that is optional.

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

Parameters4/5

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

Schema description coverage is 100%, so the baseline is 3. The description adds contextual meaning to the parameters: 'collection' is explained as 'Optional name for this batch as a group — a topic, a series, or what the week is about. The scripts show up grouped under it... which is how somebody finds them again later.' It also clarifies the broader purpose of 'scripts' as ordered and dated. This adds value beyond the schema's field-level descriptions, justifying a slight above-baseline score.

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 clearly states the tool's purpose: 'Put finished scripts into the user's Daily Studio content plan, each with the day it should go out.' It uses a specific verb ('Put'), specifies the resource ('Daily Studio content plan'), and explicitly distinguishes itself from the sibling tool: 'To record something immediately, use send_script_to_teleprompter instead — that is a delivery, this is a plan.' The contrast between planning and delivery is clear.

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

Usage Guidelines5/5

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

The description gives explicit guidance on when to use this tool: 'Use this when the user asks you to PLAN — a week, a month, a series — rather than to hand them something to record right now.' It also states the when-not: 'To record something immediately, use send_script_to_teleprompter instead.' It mentions prerequisites: 'Requires a connected Daily Studio account with the plan turned on.' This is exemplary usage guidance.

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

A4.4/5.0
Disambiguation5/5

Each tool targets a distinct resource-action pair: planning (add, edit, archive, list, get, reorder), teleprompter delivery (send), and scheduled posts (list, cancel, retry). Even closely named tools like get_planned_scripts vs list_planned_scripts are clearly separated by metadata vs full-text purpose. No two tools overlap in function.

Naming Consistency4/5

Names are uniformly snake_case and follow a verb_noun pattern, but there is slight inconsistency: 'add_scripts_to_plan' uses a prepositional phrase while similar operations use past-participle adjectives ('edit_planned_scripts', 'archive_planned_scripts'). Verb choices like list vs get are consistent with their functions. Minor deviations prevent a perfect score but the pattern is highly predictable.

Tool Count5/5

12 tools is well within the ideal 3-15 range for a focused domain. Each tool covers a clear need for content planning and teleprompter delivery without bloat or missing essentials. The count feels appropriately scoped for the server's purpose.

Completeness5/5

The toolset offers full lifecycle coverage for content plans (create, read, update, delete via archive, reorder) and scheduled posts (list, cancel, retry), with connected account listing for context. The only seemingly absent operation—permanent deletion—is intentionally excluded for safety. Read and write paths are complete, and the design prevents dead ends.

Resources