Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.fabkho/nuxt-i18n-mcp

NPM · NUXT-I18N-MCP · SCANNED AUG 3

MCP server for managing i18n translations in Nuxt projects.

Available components

+20 this week 66 Trust /100
Trust breakdown (6 categories)

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
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
Install

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

# add to Claude Code
claude mcp add fabkho-nuxt-i18n-mcp -- npx -y nuxt-i18n-mcp
# add to Codex CLI
codex mcp add fabkho-nuxt-i18n-mcp -- npx -y nuxt-i18n-mcp
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "fabkho-nuxt-i18n-mcp": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "nuxt-i18n-mcp"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add fabkho-nuxt-i18n-mcp --command npx --arg -y --arg nuxt-i18n-mcp
# ~/.hermes/config.yaml
mcp_servers:
  fabkho-nuxt-i18n-mcp:
    command: "npx"
    args: ["-y", "nuxt-i18n-mcp"]
// mcp.json
{
  "mcpServers": {
    "fabkho-nuxt-i18n-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "nuxt-i18n-mcp"
      ]
    }
  }
}
Changelog

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.

Diagnostics

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.

MCP tools — 13 exposed · ~1,632 tokens

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.

Tool Tokens
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).

NameTypeReqDescription
layerstringyesLayer name (e.g., "root", "app-admin")
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
translationsobjectyesMap of key paths to locale-value pairs

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
dryRunbooleanIf true (default), only report what would be removed. Set to false to actually delete the keys.
excludeDirsarrayAdditional directory names to skip when scanning (e.g., ["storybook", "__tests__"]).
layerstringLayer name to clean up. If omitted, cleans all layers.
localestringLocale code to read keys from for orphan detection. Defaults to the project default locale.
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
scanDirsarrayDirectories to scan for source code (absolute paths). Defaults to all layer root directories.

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.

No output schema declared.

No examples provided.

find_orphan_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.

NameTypeReqDescription
excludeDirsarrayAdditional directory names to skip when scanning (e.g., ["storybook", "__tests__"]).
layerstringLayer name to check. If omitted, checks all layers.
localestringLocale code to read keys from. Defaults to the project default locale.
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
scanDirsarrayDirectories to scan for source code (absolute paths). Defaults to all layer root directories.

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
layerstringLayer name to scan. If omitted, scans all layers.
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
referenceLocalestringReference locale code to compare against. Defaults to the project default locale.
targetLocalesarrayLocale codes to check for missing keys. Defaults to all locales except the reference.

No output schema declared.

No examples provided.

get_translations ~123

Get translation values for given key paths from a specific locale and layer. Use "*" as locale to read from all locales.

NameTypeReqDescription
keysarrayyesDot-separated key paths (e.g., ["common.actions.save"])
layerstringyesLayer name (e.g., "root", "app-admin")
localestringyesLocale code, file name, or "*" for all locales (e.g., "en", "en-US.json", "*")
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.

No output schema declared.

No examples provided.

list_locale_dirs ~56

List all i18n locale directories in the project, grouped by layer. Shows file count and top-level key namespaces per layer.

NameTypeReqDescription
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
dryRunbooleanIf true, return a preview of changes without writing. Default: false.
keysarrayyesDot-separated key paths to remove (e.g., ["common.actions.save"])
layerstringyesLayer name (e.g., "root", "app-admin")
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
dryRunbooleanIf true, return a preview of changes without writing. Default: false.
layerstringyesLayer name (e.g., "root", "app-admin")
newKeystringyesNew dot-separated key path (e.g., "common.buttons.save")
oldKeystringyesCurrent dot-separated key path (e.g., "common.actions.save")
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.

No output schema declared.

No examples provided.

scan_code_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.

NameTypeReqDescription
excludeDirsarrayAdditional directory names to skip (e.g., ["storybook", "__tests__"]).
keysarraySpecific dot-path keys to search for. If omitted, returns all key usages found in code.
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
scanDirsarrayDirectories to scan (absolute paths). Defaults to all layer root directories.

No output schema declared.

No examples provided.

search_translations ~122

Search translation files by key pattern (glob/regex) or value substring. Useful for finding existing translations before adding duplicates.

NameTypeReqDescription
layerstringLayer to search in. If omitted, searches all layers.
localestringLocale to search in. If omitted, searches all locales.
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
querystringyesSearch query — matched against keys and/or values
searchInstringWhere to search. Default: "both"

No output schema declared.

No examples provided.

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.

NameTypeReqDescription
batchSizenumberMax keys per sampling request. Default: 50.
dryRunbooleanIf true, return what would be translated without writing. Default: false.
keysarraySpecific keys to translate. If omitted, translates all missing keys.
layerstringyesLayer name to translate (e.g., "root", "app-admin")
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
referenceLocalestringReference locale code. Defaults to the project default locale.
targetLocalesarrayLocale codes to translate into. Defaults to all locales except the reference.

No output schema declared.

No examples provided.

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).

NameTypeReqDescription
layerstringyesLayer name (e.g., "root", "app-admin")
projectDirstringAbsolute path to the Nuxt project root. Defaults to server cwd.
translationsobjectyesMap of key paths to locale-value pairs

No output schema declared.

No examples provided.