io.github.rog0x/i18n
NPM · @ROG0X/MCP-I18N-TOOLS · SCANNED AUG 3
Locale detect, translations, plurals for AI agents
Available components
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. How we score →
Supply Chain Security86
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
- No install/post-install scripts declared.Pass
- Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
- Source repository is publicly reachable at the declared URL. View diagnostics → Pass
- Provenance check failed: no build-provenance attestation is published. See how to fix → View diagnostics → Fail
- Clear OSI-approved license (MIT).Pass
- Actively maintained (last published 133 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability77
- AI-judged instruction clarity (excellent).Pass
- Tool/resource definitions use about 552 tokens (~110/item across 5 items; 5 tools + 0 resources), lean.Pass
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management23
- Stability observed for 7 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage100
- 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
- 100% of tool parameters carry a description.Pass
Capabilities100
- Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.
npm · @rog0x/mcp-i18n-tools
claude mcp add rog0x-i18n -- npx -y @rog0x/mcp-i18n-tools
codex mcp add rog0x-i18n -- npx -y @rog0x/mcp-i18n-tools
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"rog0x-i18n": {
"type": "local",
"command": [
"npx",
"-y",
"@rog0x/mcp-i18n-tools"
],
"enabled": true
}
}
} openclaw mcp add rog0x-i18n --command npx --arg -y --arg @rog0x/mcp-i18n-tools
mcp_servers:
rog0x-i18n:
command: "npx"
args: ["-y", "@rog0x/mcp-i18n-tools"] {
"mcpServers": {
"rog0x-i18n": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-i18n-tools"
]
}
}
} Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.
- 3 Aug 26 +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.
- 2 Aug 26 +47
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
- License: unverified → pass ▲ functional
- Stability: unverified → 0.20 ▲ functional
- Dependency health: unverified → partial ▲ functional
- Maintenance: unverified → pass ▲ functional
- Schema quality: unverified → excellent ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Licence: MIT functional
- 1 Aug 26 +16
- Tool coverage: unverified → 100 ▲ functional
- 31 Jul 26 −23
- We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
- 30 Jul 26 −18
- Malware scan: pass → unverified ▼ security
- 27 Jul 26 46
First indexed and scored.
Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.
Captured 3 Aug 2026 · Analysed npm/@rog0x/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 94 packages
94 packages in the resolved dependency tree · 94 deprecated · 29 stale.
The dependency tree was only partially resolved, so these counts may be incomplete.
The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.
analyze_translations ~140
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.
| Name | Type | Req | Description |
|---|---|---|---|
| locales | object | yes | 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 |
No output schema declared.
No examples provided.
detect_locale ~62
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.
| Name | Type | Req | Description |
|---|---|---|---|
| text | string | yes | The text to analyze for language detection |
No output schema declared.
No examples provided.
extract_i18n_keys ~98
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.
| Name | Type | Req | Description |
|---|---|---|---|
| language | string | — | The source language/framework of the code |
| sourceCode | string | yes | The source code to analyze for hardcoded strings |
No output schema declared.
No examples provided.
format_locale ~106
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.
| Name | Type | Req | Description |
|---|---|---|---|
| locale | string | yes | BCP 47 locale code, e.g. 'en-US', 'de-DE', 'ja-JP' |
| operations | array | yes | Array of formatting operations to perform |
No output schema declared.
No examples provided.
plural_rules ~146
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.
| Name | Type | Req | Description |
|---|---|---|---|
| locale | string | yes | 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 |
No output schema declared.
No examples provided.