BeatBandit MCP

Tools

/

Story Workflows

/

take_wizard_run

take_wizard_run

orchestration
beta
auth: project:write
approval: suggest
status: v1

Generate 2-5 distinct premise TAKES from raw story material before any beats exist - Faithful, More Dramatic, Wildcard, Intimate, High Concept. The user edits/picks one; then run `story_development_run` (beat_wizard) with template_id `original_plus_take`, passing ORIGINAL_TEXT (untouched original) and SELECTED_TAKE. The verb is DIVERGE: run on fresh projects before committing to one story direction.

When to use

The caller has a raw idea and the project has no beats yet.

When not to use

Do not use after beats exist, or to build beats/scenes/prose.

Examples

“Give me five takes on this premise before we outline it.”

Anti-examples

  • Generating the beat structure itself - that is `story_development_run` with `beat_wizard`.

Backend capabilities

take_wizard.run

Linked resources

Tool calls may return resource_links pointing at these resource families.

project_canon_summary

Input schema

take_wizard_run input
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "required": [
    "project_id",
    "idea_text"
  ],
  "properties": {
    "project_id": {
      "type": "integer"
    },
    "idea_text": {
      "type": "string",
      "minLength": 1,
      "maxLength": 200000
    },
    "count": {
      "type": "integer",
      "minimum": 2,
      "maximum": 5
    }
  },
  "additionalProperties": false
}

Output schema

take_wizard_run output
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "type": "object",
  "required": [
    "takes"
  ],
  "properties": {
    "success": {
      "type": "boolean"
    },
    "takes": {
      "type": "array",
      "items": {
        "type": "object",
        "required": [
          "id",
          "label",
          "take"
        ],
        "properties": {
          "id": {
            "type": "string"
          },
          "label": {
            "type": "string"
          },
          "take": {
            "type": "string"
          }
        },
        "additionalProperties": true
      }
    },
    "original_text_length": {
      "type": "integer"
    },
    "credits_used": {
      "type": "integer"
    },
    "recommended_next_step": {
      "type": "string"
    },
    "resource_links": {
      "type": "array"
    },
    "next_actions": {
      "type": "array"
    },
    "credits_charged": {
      "type": "integer"
    }
  },
  "additionalProperties": true
}

← All toolsv1 · simple_action