Retrieves StoryBrand 7-part framework planning data for a project.
Tool Name
get_sb7_settings
Description
The get_sb7_settings tool retrieves all StoryBrand planning data for a specific project. The data includes all 7 elements of the StoryBrand framework: character, problem, guide, plan, call to action, success, failure, and transformation. Changes made via Zero Sync or the AI Assistant are instantly available.
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
| projectId | string | Yes | Project UUID (valid UUID v4) |
Example Request
{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "get_sb7_settings",
"arguments": {
"projectId": "cdc9b373-0f96-4ed3-8d4e-50db6019d327"
}
},
"id": 1
}Example Response
{
"jsonrpc": "2.0",
"result": {
"content": [
{
"type": "text",
"text": "{\"projectId\":\"cdc9b373-0f96-4ed3-8d4e-50db6019d327\",\"currentStep\":2,\"step1Completed\":true,\"step2Completed\":false,\"step3Completed\":false,\"character\":\"Small business owners\",\"problem\":\"No online presence\",\"guide\":\"CODEFLUSS Page Builder\",\"plan\":[\"Create website\",\"Customize design\",\"Publish\"],\"callToAction\":\"Get started now\",\"success\":\"More customers\",\"failure\":\"Stay invisible\",\"transformation\":\"From unknown to market leader\"}"
}
]
},
"id": 1
}Response Fields
| Field | Type | Description |
|---|---|---|
| projectId | string | Project ID |
| currentStep | number | Current step (1-3) |
| step1Completed | boolean | Step 1 completed |
| step2Completed | boolean | Step 2 completed |
| step3Completed | boolean | Step 3 completed |
| character | string | Target audience / Hero |
| characterNeeds | string | Customer needs |
| problem | string | Character's problem |
| problemImpact | string | Problem impact |
| guide | string | Guide / Brand |
| guideCredibility | string | Guide credibility |
| plan | string[] | Plan steps (array) |
| callToAction | string | Call to action |
| directCta | string | Direct CTA |
| transitionalCta | string | Transitional CTA |
| success | string | Success scenario |
| failure | string | Failure scenario |
| transformation | string | Transformation |
Errors
| Code | Meaning |
|---|---|
| -32602 | Invalid parameters (UUID format) |
| -32000 | Project not found |