Connect cofound
Add cofound to your AI
Lightweight client, all logic runs in the cloud. Works with Claude Code, Cursor, Windsurf, and any MCP-compatible agent.
Install the cofound client
Tiny package (13KB). Reads your local files and sends them to the cofound cloud for processing. In your terminal, run:
npm install -g cofound-mcpAdd to your MCP config
In your project root (or wherever your coding agent reads MCP config from), create or update .mcp.json:
{
"mcpServers": {
"cofound": {
"command": "npx",
"args": ["cofound-mcp"]
}
}
}Claude Code picks this up automatically. Cursor and Windsurf use the same format — check their docs for the exact file location if different.
Run cofound init
Open a new session in your coding agent. Type this:
run the "cofound_init" command from cofound-mcpThis writes cofound.config.json to your project root. The client reads it and sends it to the cloud when other tools need your business context. Run once per project.
What init gives you
cofound_init walks through your avatar, market research, offer design, and funnel, then writes cofound.config.json to your project. The client reads this file and sends it to the cloud whenever a tool needs your business context.
After init, run this
run the "cofound_status" command from cofound-mcpcofound will tell you what to do next. From there you can grade headlines, score your offer against the value equation, check reading level of your copy, get a guarantee recommendation, and more.
All commands
Copy any prompt below and paste it into your chat.
cofound_init
Start the guided setup. Walks through avatar, market research, offer, and funnel. Writes cofound.config.json locally.
run the "cofound_init" command from cofound-mcpcofound_status
See where you are and what to run next.
run the "cofound_status" command from cofound-mcpcofound_grade_offer
Score your offer on the Hormozi Value Equation: dream outcome clarity, likelihood, time delay, effort.
run the "cofound_grade_offer" command from cofound-mcpcofound_suggest_guarantee
Get the right guarantee type for your offer with exact script language.
run the "cofound_suggest_guarantee" command from cofound-mcpcofound_recommend_funnel
Match your offer to the right sales funnel with stage-by-stage conversion benchmarks.
run the "cofound_recommend_funnel" command from cofound-mcpcofound_validate_headline
Score a headline on the MAGIC formula and get 2–3 stronger variants.
run the "cofound_validate_headline" command from cofound-mcp on this headline: [your headline]cofound_analyze_copy
Grade copy on reading level, pain depth, and slop score. Point it at a .copy.json file — the client reads it and sends the content to the cloud.
run the "cofound_analyze_copy" command from cofound-mcp on [file path]cofound_check_reading_level
Quick reading level check. Returns Flesch-Kincaid, Coleman-Liau, ARI, and Reading Ease scores.
run the "cofound_check_reading_level" command from cofound-mcp on [file path]cofound_rewrite_copy
Rewrite copy to hit all targets: plain language, pain agitation, value equation alignment. Reads your .copy.json locally, sends it to the cloud for rewriting.
run the "cofound_rewrite_copy" command from cofound-mcp on [file path]cofound_scaffold_copy
Point it at a .tsx component — the client reads the file and the cloud extracts hardcoded strings into a structured .copy.json.
run the "cofound_scaffold_copy" command from cofound-mcp on [component file path]cofound_audit_codebase
Scans all .copy.json files in your project locally and reports coverage, consistency, and missing keys.
run the "cofound_audit_codebase" command from cofound-mcpSomething not working? Test the server is up by opening https://cofound-mcp.mrcnx.workers.dev in your browser. You should see {"name":"cofound-mcp","status":"ok"}. The /mcp endpoint only accepts POST requests from MCP clients — a browser GET will return a JSON-RPC error, which is normal.