The endpoint
The Larz MCP server is a remote, Streamable-HTTP server. Point any MCP client at it and authenticate with your Larz API key:
It exposes three meta-tools โ larz_generate (freeform generation), larz_list_tools, and larz_run_tool โ plus every Larz tool directly as larz_<slug>. One key inherits your Larz plan: the Free tier has a daily allowance and Larz Pro unlocks Pro tools and higher limits across the tools, API and MCP.
Set it up in 3 steps
Create a free API key
Sign in and generate a key at larzos.com/developers. It looks like larz_sk_โฆ โ copy it once.
Add the server to your assistant
Use the config for your client below. Replace larz_sk_YOUR_KEY with your key.
Ask your assistant to use Larz
Try: "Use Larz to write a launch tweet thread for an eco water bottle." Your assistant will call the right Larz tool and return the result.
Install for your client
One command in your terminal:
copyclaude mcp add --transport http larz-os https://larzos.com/mcp \
--header "Authorization: Bearer larz_sk_YOUR_KEY"
Edit claude_desktop_config.json (Settings โ Developer โ Edit Config) and add:
copy{
"mcpServers": {
"larz-os": {
"type": "http",
"url": "https://larzos.com/mcp",
"headers": { "Authorization": "Bearer larz_sk_YOUR_KEY" }
}
}
}
Restart Claude Desktop โ Larz tools appear in the tools menu.
Add to ~/.cursor/mcp.json (or Settings โ MCP โ Add):
copy{
"mcpServers": {
"larz-os": {
"url": "https://larzos.com/mcp",
"headers": { "Authorization": "Bearer larz_sk_YOUR_KEY" }
}
}
}
Any MCP client that supports remote Streamable HTTP servers works. Point it at https://larzos.com/mcp and set an Authorization: Bearer larz_sk_YOUR_KEY header. Windsurf, Cline, and Zed use the same mcpServers shape shown for Cursor.
What you get
Blog posts, ad copy, email sequences, sales pages, SEO briefs, LinkedIn & threads.
Token explainers, tokenomics, trading plans, market notes โ educational, not advice.
Study notes, flashcards, lesson plans, course outlines.
Code help, regex, cron explainers, SQL generation.
Freeform text generation with
larz_generate for anything else.Approved developer tools show up automatically in the catalog.
Verify it's connected
You can hit the health check directly:
copycurl https://larzos.com/mcp/health
Or test a tool call with your key:
copycurl -X POST https://larzos.com/mcp \
-H "Authorization: Bearer larz_sk_YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call",
"params":{"name":"larz_slogan","arguments":{"input":"an eco water bottle"}}}'
FAQ
Do I need a paid plan?
No. Start free โ your key includes a daily allowance. One Larz Pro plan raises limits and unlocks Pro tools everywhere: the tools, the API, and this MCP server.
Is this OpenAI/Anthropic-shaped?
It's the open Model Context Protocol, so it drops into any MCP client. Generation is powered by DrLarz, the Larz OS assistant.
Can I add my own tools?
Yes โ register a tool in the developer portal. Once approved it appears in the catalog and becomes callable here automatically.