Examples
Real interactions with the neuroflash MCP server. The LLM picks the best mode based on the server's instructions — you just ask naturally. Pick an example from the sidebar.
Chat with a Digital Twin
Traditional Mode fits here because the task is a clear, linear sequence: find the group, pick a twin, send a message. No branching logic or data transformation required.
Import a Brand Voice from a URL
A single import operation. Look up the workspace, then one tool call does the work — note the new country, language, and audienceModelId parameters.
Generate a LinkedIn Post
Three sequential lookups, no conditional logic — Traditional Mode handles this cleanly.
Three Brand Voices in Parallel
Plan Mode fits — list voices, fan out three generations concurrently, return a structured comparison. parallel trims wall-clock to one round-trip.
Compare Usage Between Workspaces
Open-ended comparison — the LLM discovers what's available, then pulls parallel data with compare.
Survey Multiple Twin Groups and Compare Reactions
Two parallel surveys plus a small comparison payload — Plan Mode runs both groups concurrently and returns just the summaries, no client-side loop.
Full Brand Voice Pipeline: URL → Content → Twin Test
A linear three-step pipeline, no branching. Demonstrates the new required params on import_brand_voice_from_url.
Create an Audience from a Website and Generate Targeted Content
Linear pipeline. Note import_audience_from_url takes urls (plural) and create_target_audience requires a full demographic profile on every call.
Multi-Turn Content Refinement Conversation
Persistent conversations preserve context across turns — much better than calling generate_text repeatedly with manual history. Note workspace_id is now required on get_conversation_messages.
Bulk Clean Up Brand Voices
Filter then bulk-delete in a single plan. filter selects the inactive rows; foreach sends one DELETE per row (capped at 20 iterations).
Image Generation with Brand-Consistent Prompt
Two sequential calls. generate_image requires model, aspect_ratio, output_format, and num_images — omitting any returns 422.
Seed a Brand Voice if None Exist
Conditional setup — list brand voices, and only import a default one when the list is empty. Showcases if/then + count.