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

@knobik/i18nexus-mcp

v0.1.3

Published

MCP server for the i18nexus translation management API

Downloads

191

Readme

i18nexus MCP

An MCP server for the i18nexus translation-management API. Exposes i18nexus projects to Claude Code, Claude Desktop, and any other MCP-compatible host, with configurable permission scopes so you can plug it in read-only or grant it full write access.

Install

No install step needed — run it directly with npx:

npx -y @knobik/i18nexus-mcp

Or install globally:

npm install -g @knobik/i18nexus-mcp

Environment variables

| Variable | Required | Default | Purpose | |---|---|---|---| | I18NEXUS_API_KEY | yes | — | Project API key (reads). Found at Settings → API Key in the i18nexus dashboard. | | I18NEXUS_ACCESS_TOKEN | yes for write scopes | — | Personal Access Token (writes). Generated in your user settings. | | I18NEXUS_SCOPE | no | readonly | One of readonly, soft-write, full. |

Scopes

| Scope | Registers | Includes destructive ops? | |---|---|---| | readonly (default) | 4 read tools | no | | soft-write | + 4 create/update/import tools | no | | full | + delete_string | yes — permanent deletion |

Configure in Claude Code

Add to your MCP config (typically ~/.claude.json or project .mcp.json):

{
  "mcpServers": {
    "i18nexus": {
      "command": "npx",
      "args": ["-y", "@knobik/i18nexus-mcp"],
      "env": {
        "I18NEXUS_API_KEY": "your_project_api_key",
        "I18NEXUS_ACCESS_TOKEN": "your_personal_access_token",
        "I18NEXUS_SCOPE": "soft-write"
      }
    }
  }
}

Or via CLI:

claude mcp add i18nexus \
  --env I18NEXUS_API_KEY=your_project_api_key \
  --env I18NEXUS_ACCESS_TOKEN=your_personal_access_token \
  --env I18NEXUS_SCOPE=soft-write \
  -- npx -y @knobik/i18nexus-mcp

Configure in Claude Desktop

Edit claude_desktop_config.json:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
  • Windows: %APPDATA%\Claude\claude_desktop_config.json
{
  "mcpServers": {
    "i18nexus": {
      "command": "npx",
      "args": ["-y", "@knobik/i18nexus-mcp"],
      "env": {
        "I18NEXUS_API_KEY": "your_project_api_key",
        "I18NEXUS_ACCESS_TOKEN": "your_personal_access_token",
        "I18NEXUS_SCOPE": "readonly"
      }
    }
  }
}

Restart Claude Desktop after editing.

Tools

Read (always registered)

| Tool | What it does | |---|---| | list_languages | List project languages. | | list_namespaces | List project namespaces. | | list_versions | List recent export versions (newest first). | | get_translations | Fetch translations — all, by language, or by language + namespace. Optional confirmed filter. |

Soft-write (scope ≥ soft-write)

| Tool | What it does | |---|---| | create_string | Create a new base-language key with machine translations. | | update_string | Update an existing key (rename, edit value, move namespace, etc.). | | import_strings | Bulk import JSON translations into a namespace. | | create_namespace | Add a new namespace. |

Full (full only)

| Tool | What it does | |---|---| | delete_string | Destructive. Permanently deletes a key and all its translations. |

Local development

git clone https://github.com/knobik/i18nexus-mcp
cd i18nexus-mcp
npm install
npm run build

# interactive smoke test
I18NEXUS_API_KEY=... I18NEXUS_ACCESS_TOKEN=... I18NEXUS_SCOPE=full \
  npx @modelcontextprotocol/inspector node dist/index.js

Publishing (maintainer notes)

npm run build
npm pack --dry-run   # preview tarball contents
npm publish --access public

License

MIT