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

@verbumia/mcp

v0.13.0

Published

MCP server for Verbumia translation management — wires Claude Desktop and other MCP clients into your project's keys, missing-key feed, and translation drafts.

Downloads

1,542

Readme

@verbumia/mcp

MCP server for Verbumia — wires Claude Desktop and other Model Context Protocol clients into your translation project.

This npm package bundles the Python MCP server source (no PyPI download). The launcher picks the best Python runtime on your host and runs the bundled verbumia_mcp directly.

Use it from Claude Desktop

{
  "mcpServers": {
    "verbumia": {
      "command": "npx",
      "args": ["-y", "@verbumia/mcp"],
      "env": {
        "VERBUMIA_API_KEY": "vrb_live_<prefix>.<secret>",
        "VERBUMIA_PROJECTS": "<project_uuid>",
        "VERBUMIA_BASE_URL": "https://api.verbumia.dev"
      }
    }
  }
}

For multiple projects (v0.11+), comma-separate the UUIDs in VERBUMIA_PROJECTS. The LLM then has to pass project_uuid on every tool call:

"env": {
  "VERBUMIA_API_KEY": "vrb_live_<prefix>.<secret>",
  "VERBUMIA_PROJECTS": "01993a..,01993b..,01993c.."
}

Restart Claude Desktop. All thirteen Verbumia tools (list_projects, get_project_info, list_keys, list_untranslated_keys, list_missing_keys, missing_keys_stats, acknowledge_missing_keys, create_key, propose_translation, publish_cdn, validate_translations, project_context_get, project_context_set) become callable from your prompt.

How the launcher works

The npm tarball ships the Python sources under python/ plus a pre-built wheel under python/dist/. The Node bin tries these in order:

  1. uvx --from <bundled_wheel> verbumia-mcp — fastest, ephemeral venv. Recommended.
  2. uv run --project <bundled_dir> verbumia-mcp — uv-managed, resolves deps from pyproject.toml.
  3. pipx run --spec <bundled_wheel> verbumia-mcp — pipx-managed.
  4. Ad-hoc venv at ~/.verbumia/mcp-venv-<wheelhash>/ — last-resort fallback that requires only python3 >= 3.12. Slow first run, fast thereafter.

Stdio is fully passthrough so the MCP JSON-RPC framing is preserved.

Environment variables (canonical)

| Var | Required | Default | Notes | |----------------------|----------|-----------------------------|--------------------------------------------------------| | VERBUMIA_API_KEY | yes | | Bearer ApiKey token. VERBUMIA_TOKEN accepted (back-compat) | | VERBUMIA_BASE_URL | no | https://api.verbumia.dev | Self-host / staging override. VERBUMIA_API_BASE accepted (back-compat) | | VERBUMIA_PROJECTS | no | (LLM picks per call) | CSV of project UUIDs. When >1, the LLM MUST pass project_uuid per call. | | VERBUMIA_PROJECT | no | (legacy) | Singular fallback for v0.10.x users. Ignored when VERBUMIA_PROJECTS is set (warns). |

Requirements

One of:

  • uv (recommended, https://docs.astral.sh/uv/)
  • pipx (https://pipx.pypa.io/)
  • python3 >= 3.12 (for the venv fallback)

Self-check

npx -y @verbumia/mcp --self-check
# -> @verbumia/mcp launchers detected: uvx, uv, python3
# -> @verbumia/mcp bundled wheel: <node_modules>/.../python/dist/verbumia_mcp-…whl

License

MIT.