Smithery

start_game

Start a new game. IMPORTANT: Do NOT describe options in your text response - they are shown in the UI. Just set the scene briefly.

Remote smithery/unicorn

Other tools also called start_game? See providers with this name

Input Schema


            {
  "type": "object",
  "properties": {
    "pitch": {
      "type": "string",
      "description": "One-sentence startup pitch. It should be an over the top one-liner and hilarious."
    },
    "archetype": {
      "type": "string",
      "description": "Archetype name (e.g. 'The Hustler'). Make this up."
    },
    "fatalFlaw": {
      "type": "string",
      "description": "Fatal flaw name. Make this up."
    },
    "flawTrigger": {
      "type": "string",
      "description": "When flaw triggers disadvantage. Make this up."
    },
    "founderName": {
      "type": "string",
      "description": "Player's founder name. Always prompt the user for this. If you want to make one up, it should be funny, like a mockery of a real founder name (i.e., Russ Hanneman, Clark Zuckberg, Gill Bates, Alt Salmon, Elon Tusk etc.)."
    },
    "archetypeStat": {
      "enum": [
        "technical",
        "hustle",
        "credibility"
      ],
      "type": "string"
    },
    "firstChallenge": {
      "type": "object",
      "required": [
        "title",
        "situation",
        "options"
      ],
      "properties": {
        "title": {
          "type": "string"
        },
        "options": {
          "type": "array",
          "items": {
            "type": "object",
            "required": [
              "id",
              "action",
              "stat",
              "difficulty",
              "risk",
              "reward"
            ],
            "properties": {
              "id": {
                "type": "string"
              },
              "risk": {
                "type": "string"
              },
              "stat": {
                "enum": [
                  "technical",
                  "hustle",
                  "credibility"
                ],
                "type": "string"
              },
              "action": {
                "type": "string"
              },
              "reward": {
                "type": "string"
              },
              "difficulty": {
                "enum": [
                  "easy",
                  "moderate",
                  "hard",
                  "very_hard"
                ],
                "type": "string"
              },
              "flawTrigger": {
                "type": "boolean"
              }
            }
          },
          "maxItems": 4,
          "minItems": 2
        },
        "situation": {
          "type": "string"
        }
      },
      "description": "First challenge. Options shown in UI - do NOT describe them in text."
    }
  }
}