Installation
Install the Babelize CLI and set up your environment.
Install the Babelize CLI and set up your environment in under a minute.
Prerequisites
Node.js 18+
Babelize CLI requires Node.js 18 or later. Check with `node --version`.
GitHub Account
You'll need a GitHub account to connect your repositories.
Install the CLI
Install globally so you can use babelize from anywhere:
npm install -g @babelize/cliOr run directly without installing:
npx @babelize/cli --helpMake sure everything works:
babelize --versionYou should see the installed version number.
Authenticate with your Babelize account:
babelize loginThis opens a browser window to complete the login. If you don't have an account yet, create one for free.
Install the SDK
The Babelize SDK lets you translate strings directly in your application at runtime — no CLI, no locale files, no configuration.
npm install @babelize/sdkpnpm add @babelize/sdkyarn add @babelize/sdkbun add @babelize/sdkFor React applications, install the React bindings as well:
npm install @babelize/sdk @babelize/sdk-reactAnd add the build plugin for automatic lockfile generation:
npm install -D @babelize/viteSee the SDK documentation for a complete guide to setting up translations in your app.
Install the MCP Server
The MCP (Model Context Protocol) server lets AI coding agents like Cursor, Claude Desktop, and opencode interact with Babelize directly from your editor.
npm install -g @babelize/mcpOr run on-demand without installing:
npx -y @babelize/mcpSet your API key:
export BABELIZE_API_KEY=bblz_sk_xxxxxxxxxSee the MCP Server guide for configuration with Cursor, Claude, and other AI tools.
What's Next?
Last updated: 2026-07-30