reset_story
Clear your current reincarnation story to start a new interactive narrative journey with fresh character choices and personalized paths.
Instructions
Reset the story completely
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| user_id | Yes |
Implementation Reference
- main.py:352-357 (handler)The core handler function for the 'reset_story' tool. It is registered via the @mcp.tool() decorator and implements the logic to remove the user's story state from the global story_states dictionary, effectively resetting their story progress.@mcp.tool() def reset_story(user_id: str) -> str: """Reset the story completely""" if user_id in story_states: del story_states[user_id] return "Story has been reset. Type 'Arise' to begin anew."