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

idiolect-mcp

v0.3.0

Published

MCP server that makes any MCP-compatible agent (Claude Code, Codex, Claude Desktop) write in YOUR voice — rewrites/drafts/scores prose against your Idiolect voice, on a validated fidelity metric.

Downloads

209

Readme

Idiolect Plugin

Write in your voice — everywhere your agent writes. Idiolect rewrites the prose an agent drafts on your behalf (commit messages, PR descriptions, docs, release notes, replies) into your own writing voice, and scores how close it got on a validated voice‑fidelity metric. Works in Claude Code and Codex.

Setup

  1. Get your API key — sign in at https://idiolect.lol/connect and generate one.
  2. Claude Code:
    /plugin marketplace add 111mihir/idiolect-plugin
    /plugin install idiolect@idiolect
    Then set your key in the environment Claude Code runs in:
    export IDIOLECT_API_KEY=idl_sk_your_key_here
  3. Codex: register Idiolect as an MCP server — one command, no clone (it runs via npx, writing an [mcp_servers.idiolect] entry to ~/.codex/config.toml):
    codex mcp add idiolect \
      --env IDIOLECT_API_KEY=idl_sk_your_key_here \
      --env IDIOLECT_BASE=https://idiolect.lol \
      -- npx -y idiolect-mcp

The plugin bundles a self‑contained MCP server (server.mjs) — no npm install needed.

Slash commands

Commands are namespaced by the plugin:

  • /idiolect:voice — show a summary of your writing voice.
  • /idiolect:rewrite <text> — rewrite text into your voice (+ Voice Match).
  • /idiolect:draft <brief> — draft new content from a brief, in your voice.
  • /idiolect:check <text> — score any text against your voice.

The skill

The in‑your‑voice skill triggers automatically whenever the agent drafts prose for you: it calls get_my_voice, rewrites the draft via rewrite_in_voice, and shows the Voice Match — so everything you "write" through the agent sounds like you.

Tools (MCP)

| Tool | What it does | | --- | --- | | get_my_voice | Load your Voice Card (call before writing on your behalf). | | rewrite_in_voice | Rewrite text in your voice; returns Voice Match + before→after delta. | | draft_in_voice | Draft new prose in your voice from a brief. | | score_voice | Voice Match of any text against your own writing. |

Pro is required for rewrite_in_voice / draft_in_voice. Your voice and corpus live in your Idiolect account; the key resolves to them server‑side.


Built from the Idiolect monorepo. To regenerate server.mjs, run plugin/build.sh.