io.github.fabkho/nuxt-i18n-mcp
NPM · NUXT-I18N-MCP · SCANNED AUG 3
MCP server for managing i18n translations in Nuxt projects.
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 Security87
- No malware found by supply-chain analysis.Pass
- Only part of the dependency tree could be resolved (98 of 102), 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 (98 of 102), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency19
- Repository check failed: the declared repository URL redirects; it must resolve directly. See how to fix → View diagnostics → Fail
- 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 117 days ago).Pass
- Disclosure check failed: no security disclosure policy was found in the source repository. See how to fix → Fail
Schema Quality & AI Usability83
- 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).Pass
- AI-judged instruction clarity (excellent).Pass
- Context-footprint check failed: tool/resource definitions use about 1632 tokens (~125/item across 13 items; 13 tools + 0 resources), over budget; trim descriptions and params. See how to fix → Fail
- Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management27
- Stability observed for 8 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 · nuxt-i18n-mcp
claude mcp add fabkho-nuxt-i18n-mcp -- npx -y nuxt-i18n-mcp
codex mcp add fabkho-nuxt-i18n-mcp -- npx -y nuxt-i18n-mcp
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"fabkho-nuxt-i18n-mcp": {
"type": "local",
"command": [
"npx",
"-y",
"nuxt-i18n-mcp"
],
"enabled": true
}
}
} openclaw mcp add fabkho-nuxt-i18n-mcp --command npx --arg -y --arg nuxt-i18n-mcp
mcp_servers:
fabkho-nuxt-i18n-mcp:
command: "npx"
args: ["-y", "nuxt-i18n-mcp"] {
"mcpServers": {
"fabkho-nuxt-i18n-mcp": {
"command": "npx",
"args": [
"-y",
"nuxt-i18n-mcp"
]
}
}
} 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 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.
- 2 Aug 26 +45
- Provenance: unverified → fail ▼ security
- Install scripts: unverified → pass ▲ security
- Known CVEs: unverified → partial ▲ security
- Malware scan: unverified → pass ▲ security
- Security disclosure: fail → unverified ▼ functional
- Stability: unverified → 0.23 ▲ functional
- MCP protocol: unverified → pass ▲ functional
- Maintenance: unverified → pass ▲ functional
- Dependency health: unverified → partial ▲ functional
- License: unverified → pass ▲ functional
- Schema quality: unverified → excellent ▲ functional
- Licence: MIT functional
- 31 Jul 26 −26
- 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 +27
- Dependency health: partial → unverified ▼ functional
- Schema quality: unverified → 100 ▲ functional
- Tool coverage: unverified → 100 ▲ functional
- 28 Jul 26 −27
- Tool coverage: 100 → unverified ▼ functional
- Schema quality: 100 → unverified ▼ functional
- Dependency health: unverified → partial ▲ functional
- 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/[email protected]
Provenance none
Ecosystem: npm · Outcome: none
Dependencies 98 packages
98 packages in the resolved dependency tree · 98 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.
add_translations Add Translations ~101
Add new translation keys to the specified layer. Provide translations per locale file name. Keys are inserted in alphabetical order. Fails if a key already exists (use update_translations instead).
| Name | Type | Req | Description |
|---|---|---|---|
| layer | string | yes | Layer name (e.g., "root", "app-admin") |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| translations | object | yes | Map of key paths to locale-value pairs |
No output schema declared.
No examples provided.
cleanup_unused_translations Cleanup Unused Translations ~193
Find translation keys not referenced in source code and remove them. Combines find_orphan_keys + remove_translations in one step. Always does a dry run first unless dryRun is explicitly set to false.
| Name | Type | Req | Description |
|---|---|---|---|
| dryRun | boolean | — | If true (default), only report what would be removed. Set to false to actually delete the keys. |
| excludeDirs | array | — | Additional directory names to skip when scanning (e.g., ["storybook", "__tests__"]). |
| layer | string | — | Layer name to clean up. If omitted, cleans all layers. |
| locale | string | — | Locale code to read keys from for orphan detection. Defaults to the project default locale. |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| scanDirs | array | — | Directories to scan for source code (absolute paths). Defaults to all layer root directories. |
No output schema declared.
No examples provided.
detect_i18n_config Detect i18n Config ~65
Detect the Nuxt i18n configuration from the project. Returns locales, locale directories, default locale, and fallback chain. Call this first before using other tools.
| Name | Type | Req | Description |
|---|---|---|---|
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
No output schema declared.
No examples provided.
find_orphan_keys Find Orphan Translation Keys ~158
Find translation keys that exist in locale JSON files but are not referenced in any Vue/TS source code. Scans a specific layer or all layers. Reports keys that can potentially be removed.
| Name | Type | Req | Description |
|---|---|---|---|
| excludeDirs | array | — | Additional directory names to skip when scanning (e.g., ["storybook", "__tests__"]). |
| layer | string | — | Layer name to check. If omitted, checks all layers. |
| locale | string | — | Locale code to read keys from. Defaults to the project default locale. |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| scanDirs | array | — | Directories to scan for source code (absolute paths). Defaults to all layer root directories. |
No output schema declared.
No examples provided.
get_missing_translations Get Missing Translations ~118
Find translation keys that exist in the reference locale but are missing in other locales. Scans a specific layer or all layers.
| Name | Type | Req | Description |
|---|---|---|---|
| layer | string | — | Layer name to scan. If omitted, scans all layers. |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| referenceLocale | string | — | Reference locale code to compare against. Defaults to the project default locale. |
| targetLocales | array | — | Locale codes to check for missing keys. Defaults to all locales except the reference. |
No output schema declared.
No examples provided.
get_translations Get Translations ~123
Get translation values for given key paths from a specific locale and layer. Use "*" as locale to read from all locales.
| Name | Type | Req | Description |
|---|---|---|---|
| keys | array | yes | Dot-separated key paths (e.g., ["common.actions.save"]) |
| layer | string | yes | Layer name (e.g., "root", "app-admin") |
| locale | string | yes | Locale code, file name, or "*" for all locales (e.g., "en", "en-US.json", "*") |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
No output schema declared.
No examples provided.
list_locale_dirs List Locale Directories ~56
List all i18n locale directories in the project, grouped by layer. Shows file count and top-level key namespaces per layer.
| Name | Type | Req | Description |
|---|---|---|---|
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
No output schema declared.
No examples provided.
remove_translations Remove Translations ~117
Remove one or more translation keys from ALL locale files in the specified layer. Use dryRun to preview changes before applying them.
| Name | Type | Req | Description |
|---|---|---|---|
| dryRun | boolean | — | If true, return a preview of changes without writing. Default: false. |
| keys | array | yes | Dot-separated key paths to remove (e.g., ["common.actions.save"]) |
| layer | string | yes | Layer name (e.g., "root", "app-admin") |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
No output schema declared.
No examples provided.
rename_translation_key Rename Translation Key ~145
Rename/move a translation key across ALL locale files in a layer. Preserves the value in every locale. Use dryRun to preview changes before applying them.
| Name | Type | Req | Description |
|---|---|---|---|
| dryRun | boolean | — | If true, return a preview of changes without writing. Default: false. |
| layer | string | yes | Layer name (e.g., "root", "app-admin") |
| newKey | string | yes | New dot-separated key path (e.g., "common.buttons.save") |
| oldKey | string | yes | Current dot-separated key path (e.g., "common.actions.save") |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
No output schema declared.
No examples provided.
scan_code_usage Scan Code for Translation Key Usage ~140
Scan Vue/TS source files to find where translation keys are referenced. Shows file paths and line numbers for each key. Useful for understanding where a key is used before renaming or removing it.
| Name | Type | Req | Description |
|---|---|---|---|
| excludeDirs | array | — | Additional directory names to skip (e.g., ["storybook", "__tests__"]). |
| keys | array | — | Specific dot-path keys to search for. If omitted, returns all key usages found in code. |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| scanDirs | array | — | Directories to scan (absolute paths). Defaults to all layer root directories. |
No output schema declared.
No examples provided.
search_translations Search Translations ~122
Search translation files by key pattern (glob/regex) or value substring. Useful for finding existing translations before adding duplicates.
| Name | Type | Req | Description |
|---|---|---|---|
| layer | string | — | Layer to search in. If omitted, searches all layers. |
| locale | string | — | Locale to search in. If omitted, searches all locales. |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| query | string | yes | Search query — matched against keys and/or values |
| searchIn | string | — | Where to search. Default: "both" |
No output schema declared.
No examples provided.
translate_missing Translate Missing ~198
Find keys missing in target locales and translate them. Uses the host LLM via MCP sampling if available, otherwise returns context for the agent to translate inline. Uses project config (glossary, translation prompt, locale notes, examples) if available.
| Name | Type | Req | Description |
|---|---|---|---|
| batchSize | number | — | Max keys per sampling request. Default: 50. |
| dryRun | boolean | — | If true, return what would be translated without writing. Default: false. |
| keys | array | — | Specific keys to translate. If omitted, translates all missing keys. |
| layer | string | yes | Layer name to translate (e.g., "root", "app-admin") |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| referenceLocale | string | — | Reference locale code. Defaults to the project default locale. |
| targetLocales | array | — | Locale codes to translate into. Defaults to all locales except the reference. |
No output schema declared.
No examples provided.
update_translations Update Translations ~96
Update existing translation keys in the specified layer. Provide new values per locale file name. Fails if a key does not exist (use add_translations instead).
| Name | Type | Req | Description |
|---|---|---|---|
| layer | string | yes | Layer name (e.g., "root", "app-admin") |
| projectDir | string | — | Absolute path to the Nuxt project root. Defaults to server cwd. |
| translations | object | yes | Map of key paths to locale-value pairs |
No output schema declared.
No examples provided.