Install the MCP
Add the What My AI Said MCP to your AI tool. Then ask it to submit conversations straight from your editor or chat. Or submit manually.
This tool submits AI conversations to a public site. Review each submission before confirming. See our terms.
Claude Code
One-line install:
claude mcp add --transport http what-my-ai-said https://whatmyaisaid.com/api/mcp
Claude Desktop
Open Settings → Connectors → Add custom connector and paste this URL:
https://whatmyaisaid.com/api/mcp
Cursor
Add to ~/.cursor/mcp.json:
{
"mcpServers": {
"what-my-ai-said": {
"url": "https://whatmyaisaid.com/api/mcp"
}
}
}VS Code, Zed, Windsurf, other stdio clients
These clients only speak stdio. Use the mcp-remote bridge in your MCP config:
{
"mcpServers": {
"what-my-ai-said": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://whatmyaisaid.com/api/mcp"]
}
}
}The tools
- submit_conversation — posts a conversation directly.
Required: content: string. Format with Human: / Assistant: line prefixes so each turn renders as its own block. Rate limited to 5/hr per IP.
- submit_last_exchange — preview-then-post flow with optional auto-fetch.
All args optional: content, exchange_id, source, dry_run. Call once with dry_run: true to see what would post and get an exchange_id; call again with that id to commit. Pass content directly as a fallback. Submits rate limited to 5/hr per IP, previews to 30/hr.
Optional: /wmais slash command (Claude Code only)
Claude Code users can install a small skill that wraps submit_last_exchange with a confirm-before-post UI. Drop this file in ~/.claude/skills/wmais/SKILL.md and restart your session — then /wmais will preview the last turn pair and ask you to confirm before submitting.
Other clients can ask the model directly: “submit my last reply to whatmyaisaid” and the model will call the MCP tool.