🚨 Shai-Hulud Strikes Again:834 Packages Compromised.Technical Analysis →
Socket
Book a DemoInstallSign in
Socket

@binance/analyze-i18n

Package Overview
Dependencies
Maintainers
1
Versions
26
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@binance/analyze-i18n

An MCP server that analyzes files to detect hardcoded text and suggests i18n transformations with diff output for review.

latest
npmnpm
Version
1.0.26
Version published
Maintainers
1
Created
Source

Analyze i18n MCP Server

An MCP server that analyzes files to detect hardcoded text and suggests i18n transformations with diff output for review.

It also collates new and missing i18n key value pairs into a json file in /Users/user/Library/Caches/cursor/analyze-i18n/files which can be used for BTS upload.

Usage guide

  • On cursor, enter cmd + L to bring up the chat window
  • Click @ and select the project folder to add the project to context
  • Enter Use tool: anaylze_i18n
  • After it runs, review the changes made by AI
  • If there are any new i18n key value pairs that are generated, a .json file will be produced

MCP Integration

  • Open Cursor Settings > MCP & Integrations > MCP Tools
  • Click New MCP Server
  • Add the following configuration:
{
  "mcpServers": {
    ...,
    "analyze-i18n": {
      "command": "npx",
      "args": ["@binance/analyze-i18n"]
    }
  }
}

Development

  • npm run dev - Start with hot reload
  • npm run build - Build for production
  • npm start - Alias for dev command
  • npm run debug - Debug with inspector

MCP configurations on local

See the Quickstart tutorial for more information.

// Local built file
{
  "analyze-i18n": {
    "command": "node",
    "args": ["<path-to>/analyze-i18n/build/src/index.js"]
  }
}
// Local development with hot reload
// Turn on/off the tool to reload cursor MCP on code change
{
  "analyze-i18n": {
    "command": "npx",
    "args": ["tsx", "<path-to>/analyze-i18n/src/index.ts"]
  }
}

Deployment

Documentation

FAQs

Package last updated on 03 Nov 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts