Developers
Bring the rewrite engine into your tools.
The same rewrite engine that powers replyinmyvoice.com is available to LLM tools through an MCP server and a Claude Code Skill. Wire it into Codex, Claude Code, Cursor, or Continue.dev and ask your agent to rewrite a reply directly.
MCP server
@replyinmyvoice/mcp-server
A Model Context Protocol server that exposes three tools: rewrite_email, analyze_signal, and list_scenarios. Point any MCP-aware client at it and authenticate with your API key.
Claude Code
claude mcp add reply-in-my-voice -- npx @replyinmyvoice/mcp-serverCodex CLI
codex mcp add reply-in-my-voice -- npx @replyinmyvoice/mcp-serverCursor
// ~/.cursor/mcp.json
{
"mcpServers": {
"reply-in-my-voice": {
"command": "npx",
"args": ["@replyinmyvoice/mcp-server"],
"env": { "REPLY_IN_MY_VOICE_API_KEY": "rmv_live_..." }
}
}
}Continue.dev
# ~/.continue/config.yaml
mcpServers:
- name: reply-in-my-voice
command: npx
args: ["@replyinmyvoice/mcp-server"]
env:
REPLY_IN_MY_VOICE_API_KEY: rmv_live_...Claude Code Skill
replyinmyvoice-rewrite
A first-party Skill bundles the prompt patterns and tool calls used on the site so Claude Code can drive the rewrite engine with one instruction. Install once, then say /rewrite this email in any project.
Install
# Bundled with the MCP server
claude skill install @replyinmyvoice/skill-rewriteHTTP API
REST endpoint coming soon
A standalone REST API for server-to-server use is in progress. Want early access? Sign up below — we will email you when the API is ready.