Turn any Claude conversation into a beautiful, shareable web page. One command to install, one phrase to share.
Chat with Claude in Claude Code, the desktop app, or on the web.
Claude packages the conversation and publishes it. You get a link instantly.
Anyone can view it — mobile chat view, desktop view, dark and light mode.
curl -sL https://convos.staroseltsev.com/install/share-convo.md \
-o ~/.claude/commands/share-convo.md# Run the command
/share-convo
# Or just say it naturally:
"Let's share this conversation"
"Publish the last 5 messages"
"Create a link for this chat"In Claude Desktop, go to Settings → MCP Servers → Add and enter:
https://convos.staroseltsev.com/mcpJust tell Claude to share the conversation. It will call the share_conversation tool and return a link.
curl -X POST https://convos.staroseltsev.com/api/conversations \
-H "Content-Type: application/json" \
-d '{
"title": "My Conversation",
"summary": "Optional summary text",
"messages": [
{"role": "user", "content": "Hello!"},
{"role": "assistant", "content": "Hi there!"}
]
}'No authentication required. Returns {"id": "...", "url": "..."}
Toggle between mobile chat bubbles and a desktop layout that looks like Claude's own UI.
Follows system preference by default. Toggle manually with one click.
Code blocks are highlighted with language detection. Copy button included.
Share in Slack, iMessage, or Telegram — the title and summary show as a preview card.