MCP Usage Examples
Three real workflows showing how the MarketingSecrets.ai Brain connector makes every AI tool — Claude Desktop, Cursor, ChatGPT — instantly aware of your business.
Before you start. These examples assume you have already connected the Brain via MCP. If not, follow the setup guide first — it takes under five minutes.
Example 1: Morning business brief
You open Claude Desktop first thing in the morning and ask a simple question. Claude pulls your profile and recent memories from the Brain before answering.
You (in Claude Desktop):
Good morning. What should I focus on today?
Claude (uses memory_get_profile + memory_get_recent, then responds):
Good morning! Based on your Brain:
• Your current focus is scaling your email list (you mentioned this last Tuesday)
• You have a $997 coaching offer that closes Friday
• Your Dream 100 target Dan Kennedy has a new podcast episode worth engaging with
Top priority today: close 2 more coaching clients before Friday's deadline.
Tools called: memory_get_profile, memory_get_recent
Example 2: Writing with your voice
You are drafting marketing copy in Cursor. Instead of re-pasting your tone guidelines and current offer details every time, Claude pulls them from the Brain on the fly.
You (in Cursor):
Write an Instagram caption for this product using my voice.
Claude (uses memory_search twice, then writes):
1) memory_search("voice")
→ returns: "Voice: punchy, first-person, one idea per line,
never uses corporate words like 'leverage' or 'synergy'."
2) memory_search("offer")
→ returns: "$997 coaching spot — 4 slots open — closes Friday."
Claude then writes a caption in exactly that voice with the current
offer baked in — no re-prompting, no style drift.
Tools called: memory_search (multiple queries)
Note the short queries. memory_search matches your query as text inside your saved facts, so voice and offer hit while a whole sentence like what is my instagram voice returns nothing. See Connect an AI You Already Use for the full behaviour.
Example 3: Saving a business decision
Decisions you make mid-conversation with Claude become permanent context for every future conversation — not just in Claude, but in Cursor, ChatGPT, and the MarketingSecrets.ai app itself.
You:
Remember that we decided to price the new course at $297 with a $97 early bird.
Claude calls memory_save:
{
"content": "Pricing decision: New course = $297 standard, $97 early bird",
"category": "business"
}
Claude confirms:
Got it — saved to your Brain. I'll reference this
whenever we work on the course.
Tools called: memory_save
Ready to connect?
Generate an API key and wire the Brain into your favorite MCP client in a few minutes.
Next
- Connect an AI You Already Use — five-minute setup
- Brain API Reference — the tools behind these examples