Skip to main content
Glama

promote_idea

Convert an idea into a draft Content item and link it back to the source idea. Agents cannot publish directly; next edit hook, body, or CTA and create platform variants.

Instructions

[Pipeline step 2→3 — Discover → Create] Promote an idea to a draft Content item. Creates a new Content (always status=draft; agents cannot publish directly) and links the original idea via ideas.promoted_to. Typical next step: update_content (edit hook/body/cta) → create_variant (step 4, derive per-platform).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ctaNoCall to action
hookNoAttention-grabbing hook (first 1~2 lines readers see).
slugYesURL-friendly slug for the new content
tagsNoContent tags
titleYesTitle for the new content
body_mdNoInitial body in Markdown
idea_idYesID of the idea to promote
categoryNoContent category
media_typeNoType of media
core_messageNoCore message or thesis
funnel_stageNoMarketing funnel stage

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.4/5.0
Behavior4/5

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

With no annotations at all, the description carries the full burden and does well: it discloses the always-draft status constraint ('agents cannot publish directly') and the side effect of linking the original idea via ideas.promoted_to. It omits what happens if the idea was already promoted, whether the idea is consumed/archived, or what identifier is returned.

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?

Three dense sentences, zero filler, with the identity and the draft-only constraint front-loaded before the forward workflow pointers. Every sentence earns its place.

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?

Covers a mutation tool's lifecycle well: what it creates, the status it lands in, the link it establishes, and where it sits in the pipeline. With no output schema and no annotations, it could still say what is returned (e.g., the new content ID) so an agent can chain update_content, but overall this is close to complete.

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% across all 11 parameters, so the schema already documents hook, cta, core_message, funnel_stage, etc. The description adds no syntax, format, or constraint details beyond the schema baseline, so a 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?

States a specific verb and resource — 'Promote an idea to a draft Content item' — and places it in a named pipeline step (2→3, Discover → Create). An agent can distinguish this from the sibling create_content and create_idea without opening any schema.

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?

Explicitly gives the workflow context ('Pipeline step 2→3') and names the follow-on tools in order: update_content then create_variant (step 4). This is actionable routing guidance rather than passive description.

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