# io.github.rog0x/i18n (npm · @rog0x/mcp-i18n-tools)

Locale detect, translations, plurals for AI agents

- Trust score: 69/100 (medium)
- Change this week: +23
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- npm · `@rog0x/mcp-i18n-tools`: 69/100 (this document), [markdown](https://verifymcp.io/servers/rog0x-i18n/rog0x-mcp-i18n-tools.md), [page](https://verifymcp.io/servers/rog0x-i18n/rog0x-mcp-i18n-tools)

## Channel facts

- Registry: `npm`
- Package: `@rog0x/mcp-i18n-tools`
- Version: `1.0.2`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 133 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 552 tokens (~110/item across 5 items; 5 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 23/100
  - Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add rog0x-i18n -- npx -y @rog0x/mcp-i18n-tools
```

### Codex

```bash
codex mcp add rog0x-i18n -- npx -y @rog0x/mcp-i18n-tools
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "rog0x-i18n": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@rog0x/mcp-i18n-tools"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add rog0x-i18n --command npx --arg -y --arg @rog0x/mcp-i18n-tools
```

### Hermes

```yaml
mcp_servers:
  rog0x-i18n:
    command: "npx"
    args: ["-y", "@rog0x/mcp-i18n-tools"]
```

### Other

```json
{
  "mcpServers": {
    "rog0x-i18n": {
      "command": "npx",
      "args": [
        "-y",
        "@rog0x/mcp-i18n-tools"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-03 (score 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-08-02 (score 68, +47)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] License: unverified → pass
- [functional improvement] Stability: unverified → 0.20
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] MCP protocol: unverified → pass
- [functional] Licence: MIT

### 2026-08-01 (score 21, +16)

- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −23)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 28, −18)

- [security regression] Malware scan: pass → unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (5)

### `detect_locale` (~62 tokens)

Detect the language and locale of a given text string. Returns the detected language code (BCP 47), language name, writing script, confidence score (0-1), and alternate language candidates.

Input parameters:

- `text` (string, required): The text to analyze for language detection

### `extract_i18n_keys` (~98 tokens)

Extract hardcoded user-facing strings from source code that should be internationalized. Finds strings in JSX attributes, HTML templates, console.log calls, error messages, dialogs, and labeled variable assignments. Returns each string with its location, context, and a suggested i18n key name.

Input parameters:

- `language` (string): The source language/framework of the code
- `sourceCode` (string, required): The source code to analyze for hardcoded strings

### `analyze_translations` (~140 tokens)

Analyze translation JSON files for consistency across locales. Finds missing keys, extra keys, structural mismatches, interpolation variable differences, and empty values. Optionally identifies unused keys given a list of keys referenced in source code.

Input parameters:

- `locales` (object, required): Object mapping locale codes to their translation JSON objects, e.g. { "en": { "greeting": "Hello" }, "fr": { "greeting": "Bonjour" } }
- `referenceLocale` (string): The reference locale to compare all others against (default: en)
- `usedKeys` (array): Optional list of translation keys actually used in source code, to find unused keys

### `plural_rules` (~146 tokens)

Generate plural form categories and rules for a given locale. Shows which plural categories a language uses (zero/one/two/few/many/other), provides example numbers for each category, and classifies any test numbers you supply. Supports English, French, German, Spanish, Portuguese, Russian, Ukrainian, Polish, Czech, Arabic, Japanese, Chinese, and Korean.

Input parameters:

- `locale` (string, required): BCP 47 locale code, e.g. 'en', 'ru', 'ar', 'ja'
- `testNumbers` (array): Optional array of numbers to classify into plural categories
- `word` (string): A singular noun to use as a placeholder in generated forms

### `format_locale` (~106 tokens)

Format numbers, currencies, dates, and relative times for any locale using the Intl APIs. Supports decimal/percent/unit number formatting, multi-display currency formatting, short/medium/long/full date styles, and relative time expressions. Provide one or more formatting requests in a single call.

Input parameters:

- `locale` (string, required): BCP 47 locale code, e.g. 'en-US', 'de-DE', 'ja-JP'
- `operations` (array, required): Array of formatting operations to perform

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/rog0x-i18n/rog0x-mcp-i18n-tools#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 21
- 2026-07-31: 5
- 2026-07-30: 28
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@rog0x/mcp-i18n-tools
- Socket report: https://socket.dev/npm/package/@rog0x/mcp-i18n-tools
- Repository: https://github.com/rog0x/mcp-i18n-tools
- Changelog RSS feed: https://verifymcp.io/servers/rog0x-i18n/rog0x-mcp-i18n-tools/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/rog0x-i18n/rog0x-mcp-i18n-tools/changelog.json
- HTML version of this page: https://verifymcp.io/servers/rog0x-i18n/rog0x-mcp-i18n-tools
