npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@replyinmyvoiceashuman/mcp-server

v0.1.3

Published

MCP server for Reply In My Voice rewrite API

Readme

@replyinmyvoiceashuman/mcp-server

MCP server for Reply In My Voice. It gives MCP-compatible clients a small, stable interface for rewriting email replies while preserving the supplied facts and context.

The package can run locally over stdio with npx, or clients can connect to the hosted HTTP endpoint.

Requirements

Local stdio with npx

Run the server directly:

REPLY_IN_MY_VOICE_API_KEY=rmv_live_xxx npx -y @replyinmyvoiceashuman/mcp-server

The server uses https://replyinmyvoice.com by default. For development or staging, set REPLY_IN_MY_VOICE_BASE_URL.

Claude Desktop

Edit ~/Library/Application Support/Claude/claude_desktop_config.json on macOS, or %APPDATA%\Claude\claude_desktop_config.json on Windows:

{
  "mcpServers": {
    "replyinmyvoice": {
      "command": "npx",
      "args": ["-y", "@replyinmyvoiceashuman/mcp-server"],
      "env": {
        "REPLY_IN_MY_VOICE_API_KEY": "rmv_live_xxx"
      }
    }
  }
}

Codex

Add a local stdio server:

[mcp_servers.replyinmyvoice]
command = "npx"
args = ["-y", "@replyinmyvoiceashuman/mcp-server"]
env = { REPLY_IN_MY_VOICE_API_KEY = "rmv_live_xxx" }

Remote HTTP

Use the hosted endpoint when your MCP client supports HTTP transport and custom authorization headers.

Claude Code

claude mcp add --transport http replyinmyvoice https://replyinmyvoice.com/api/mcp \
  --header "Authorization: Bearer rmv_live_xxx"

Codex

codex mcp add --url https://replyinmyvoice.com/api/mcp replyinmyvoice \
  --header "Authorization: Bearer rmv_live_xxx"

Tools

This server exposes exactly two tools.

rewrite_email

Rewrites a draft email reply and returns the finished text.

Input:

| Field | Type | Required | Notes | | --- | --- | --- | --- | | draft | string | yes | Draft reply to rewrite. Use 10 to 2400 characters and keep it under about 300 words. |

Output:

{
  "rewritten": "Thanks for sending this through...",
  "changes": ["Made the reply clearer and more natural."],
  "attempt_id": "rw_..."
}

rewrite_email submits the request, polls the Reply In My Voice API, and returns the final rewritten reply when the job succeeds.

get_rewrite_result

Checks the status of a rewrite attempt.

Input:

| Field | Type | Required | Notes | | --- | --- | --- | --- | | attempt_id | string | yes | Attempt id returned by rewrite_email. |

Output:

{
  "status": "succeeded",
  "rewritten": "Thanks for sending this through...",
  "changes": ["Made the reply clearer and more natural."]
}

status is one of working, succeeded, or failed.

Billing

rewrite_email uses one rewrite credit when a reply is successfully delivered. get_rewrite_result checks an existing attempt and does not use another credit.

If credits are exhausted, visit https://replyinmyvoice.com/developers to manage API access.

Links

License

MIT. See LICENSE.