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

StringLane

NPM · @STRINGLANE/CLI · SCANNED SEP 26

Check, translate and fix app localization files — ARB, iOS strings, Android XML, i18next JSON.

Available components

63 Trust /100
Trust breakdown (7 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 → Why this is hard to score →

Supply Chain Security100
  • No malware found by supply-chain analysis.Pass
  • No known CVEs affecting this package version or its production dependencies.Pass
  • No install/post-install scripts declared.Pass
  • No production dependencies, so there is no dependency health to assess. View diagnostics → Pass
Provenance & Transparency6
Schema Quality & AI Usability78
  • 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 2848 tokens (~284/item across 10 items; 10 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 Management0
  • Stability not yet verified: not enough scan history yet (needs a 30-day window).Unverified
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
Tool Safety100
  • No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.Pass
  • We read all 10 captured tool definition(s), and no name or description among them implies an irreversible operation.Pass
  • An AI judge read all 11 captured unit(s) of tool text and found none that tries to manipulate the model reading it.Pass
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass

Unverified: 1 category

A category scored 0 because we could not verify it: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

Install

How do I install the StringLane MCP server?

StringLane runs locally as an npm package, launched with npx -y @stringlane/cli. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

npm · @stringlane/cli

# add to Claude Code
claude mcp add thebedcoder-stringlane -- npx -y @stringlane/cli
// .cursor/mcp.json
{
  "mcpServers": {
    "thebedcoder-stringlane": {
      "command": "npx",
      "args": [
        "-y",
        "@stringlane/cli"
      ]
    }
  }
}
// .vscode/mcp.json
{
  "servers": {
    "thebedcoder-stringlane": {
      "command": "npx",
      "args": [
        "-y",
        "@stringlane/cli"
      ]
    }
  }
}
# add to Codex CLI
codex mcp add thebedcoder-stringlane -- npx -y @stringlane/cli
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "thebedcoder-stringlane": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@stringlane/cli"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add thebedcoder-stringlane --command npx --arg -y --arg @stringlane/cli
# ~/.hermes/config.yaml
mcp_servers:
  thebedcoder-stringlane:
    command: "npx"
    args: ["-y", "@stringlane/cli"]
// ~/.netclaw/config/netclaw.json
{
  "McpServers": {
    "thebedcoder-stringlane": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "@stringlane/cli"
      ]
    }
  }
}
# add to Vellum
assistant mcp add thebedcoder-stringlane -t stdio -c npx -a -y @stringlane/cli
// mcp.json
{
  "mcpServers": {
    "thebedcoder-stringlane": {
      "command": "npx",
      "args": [
        "-y",
        "@stringlane/cli"
      ]
    }
  }
}
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.

  • 25 Sept 26 63

    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 26 Sept 2026 · Analysed npm/@stringlane/cli@0.4.1

Provenance No attestation

The registry publishes no build provenance for this version, so there is nothing to verify.

Result No attestation
Ecosystem npm

Background: How many MCP packages publish verified provenance →

Dependencies 0 packages
Packages resolved 0
Tree resolution Complete

Background: SBOMs and build attestations, explained →

MCP tools · 10 exposed · ~1,515 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. A tool's description is untrusted text the model reads on every call, which is what makes this list a security surface and not just an inventory: how tool poisoning works →

Tool Tokens
add_key ~249

Add new translation keys and their source strings to the base locale. Use this when you have just written code referencing keys the project does not have yet. WRITES to your project. Send them ALL IN ONE CALL — one call is one atomic write, so a component never ends up half-keyed. Include a description for each key: you are holding the context nobody recovers later, and a key without one is reported by the very next prepare_translation_plan as still needing it. Never add a key by editing the locale file: key names are not equally legal across formats, a description belongs wherever THIS format keeps one, and a hand edit skips both checks. It writes the BASE locale only; every other locale then reports the keys as missing, so translate them with prepare_translation_plan as usual. Adding the key is HALF the job: until those locales have it, the string ships in the base language to everyone else, so do not report the work as done when this returns — localesToTranslate on the result is how many are waiting. A key that already exists refuses the whole set rather than overwriting.

NameTypeReqDescription
keysarrayyesOne entry per key. An invalid key refuses the whole set.

No output schema declared.

No examples provided.

add_locale ~183

Create the file for a locale this project does not have yet, in the right place and the right format. WRITES to your project. Use this when prepare_translation_plan comes back empty because there is nothing to translate INTO. Never write a locale file yourself: the path, the format and the plural categories differ per project, and a hand-made file skips every check. This creates the FILE. It does not make the app OFFER the language — that lives in the app's own source (a supportedLocales list, Info.plist, a locale config, supportedLngs, a language picker) and each of those is optional per project, so check rather than assume. Do not report a locale as ready before you have.

NameTypeReqDescription
localestringyesBCP 47 code — "uk", "fr-CA", "zh-Hans". Not the base locale.

No output schema declared.

No examples provided.

apply_translations ~111

Write validated translations into the project’s locale files. It re-runs every check validate_translations runs, and additionally refuses if the project changed since the plan was made — a clean validate earlier grants nothing. Either every proposed change lands or none does. Your host asks the user before this runs, and git is where they review what it wrote.

NameTypeReqDescription
candidatesarrayyesOne entry per plan item you are answering.
planIdstringyesThe planId from prepare_translation_plan, this session.

No output schema declared.

No examples provided.

describe_keys ~109

Store a description for one or more keys, so every future translation is made against context instead of a guess. WRITES to your project. A description is stored where this format keeps one: the ARB @key block, an iOS or Android comment, or .stringlane/metadata.yaml. Describing a key that is already translated marks that translation stale, so describe before you translate.

NameTypeReqDescription
descriptionsarrayyesOne entry per key you are describing. An unknown key refuses the whole set.

No output schema declared.

No examples provided.

inspect_project ~51

Report this project’s locales, missing and stale strings, and every validation finding, as the stringlane engine sees them. Reads only; writes nothing. Takes no arguments — the project is fixed when the server starts.

Input schema present but exposes no named parameters.

No output schema declared.

No examples provided.

prepare_translation_plan ~158

List exactly the strings that need translating, each with its base value, metadata, placeholders and plural categories, plus the project’s translation context. Returns a planId to pass to validate_translations and apply_translations. Reads only; writes nothing. Takes no file paths — the project is fixed when the server starts.

NameTypeReqDescription
afterinteger–Number of items already received. Use with planId to continue.
limitinteger–Items per page. Default 100, maximum 2000.
planIdstring–To fetch a further page of a plan you already have. Omit to make a new plan.
targetsarray–Locale codes to plan for. Omit for every locale except the base.

No output schema declared.

No examples provided.

read_key_usage ~181

Report where a translation key is called in this project’s source code, or list the keys nothing appears to call. Use this instead of grepping: it knows the call shapes of each supported framework, matches the spelling the runtime actually uses rather than the merged key, and refuses rather than guessing when it cannot read your code. "Not referenced" is what the scanner SAW, not a verdict — read the caveat before deleting anything. Reads only; writes nothing.

NameTypeReqDescription
cursorstring–nextCursor from a previous result. Opaque — pass it back, do not parse it.
keystring–A merged key, exactly as prepare_translation_plan spells it. Omit to list unused keys.
limitinteger–Maximum unused keys per page. Default 200, maximum 2000. Ignored when key is given.

No output schema declared.

No examples provided.

read_translations ~206

Look up what this project already says — one key across locales, or keys matching a search, decoded exactly as the stringlane engine reads them. Use this instead of opening a locale file: four of the five supported formats escape, prefix or nest their values, so the bytes on disk are not the string. Reads only; writes nothing. Takes no file paths — the project is fixed when the server starts.

NameTypeReqDescription
cursorstring–nextCursor from a previous result. Opaque — pass it back, do not parse it.
keystring–An exact key, as prepare_translation_plan spells it. Omit to list.
limitinteger–Maximum translations (not keys) per page. Default 200, maximum 2000.
localesarray–Locale codes to read. Omit for every locale, base included.
querystring–Case-insensitive substring matched against KEYS, not values. Cannot be used with key.

No output schema declared.

No examples provided.

set_project_context ~156

Store what this product IS, how it should sound, per-locale notes, and words that must never be translated. WRITES to stringlane.yaml. These shape every future translation in every locale, so they are worth getting right once. Omit a field to leave it alone; pass an empty value to remove it.

NameTypeReqDescription
brandingGuidelinesstring–Voice, tone, address form, and anything never to translate.
guardedWordsarray–Words that must survive translation unchanged. No empty entries.
localeContextobject–Locale code to notes. A locale the project does not have is refused.
productContextstring–What the product is and who uses it. Empty string removes it.

No output schema declared.

No examples provided.

validate_translations ~111

Check candidate translations against a plan — placeholders, ICU structure, plural categories, length constraints — and report every problem. Writes nothing, anywhere. A clean result means these candidates would be accepted, but it is not permission to write: apply_translations re-runs every check itself and also verifies the project has not changed since the plan was made.

NameTypeReqDescription
candidatesarrayyesOne entry per plan item you are answering.
planIdstringyesThe planId from prepare_translation_plan, this session.

No output schema declared.

No examples provided.

Common questions

What is the StringLane MCP server?

StringLane is an MCP server listed in the public MCP registry as io.github.thebedcoder/stringlane. Check, translate and fix app localization files, ARB, iOS strings, Android XML, i18next JSON. This page covers its npm package (@stringlane/cli).

Is the StringLane MCP server safe to use?

StringLane scores 63 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 26 September 2026. It declares no install or post-install scripts. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

What tools does the StringLane MCP server expose?

StringLane exposes 10 tools: inspect_project, read_translations, read_key_usage, prepare_translation_plan, validate_translations, and 5 more. Their descriptions and schemas cost roughly 1,515 tokens of context every time the server is loaded.

Is the StringLane MCP server still maintained?

StringLane is still listed as active in the MCP registry. We last reached this channel on 26 September 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.