We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aymericzip/intlayer'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
---
createdAt: 2026-01-21
updatedAt: 2026-01-21
title: intlayer-cli Package Documentation
description: CLI tool for Intlayer, providing commands for building and auditing dictionaries.
keywords:
- cli
- tools
- internationalization
- i18n
slugs:
- doc
- packages
- intlayer-cli
- exports
history:
- version: 8.0.0
date: 2026-01-21
changes: Unified documentation for all exports
---
# intlayer-cli Package
The `intlayer-cli` package provides a set of commands to manage Intlayer dictionaries and configuration.
## Installation
```bash
npm install intlayer-cli
```
## Exports
### CLI Commands (Functions)
The package exports functions that power the CLI commands, allowing you to trigger Intlayer operations programmatically.
Import:
```tsx
import "intlayer-cli";
```
| Function | Description |
| -------------- | ------------------------------------------------------ |
| `build` | Builds the Intlayer dictionaries. |
| `audit` | Audits the dictionaries for missing translations. |
| `liveSync` | Synchronizes dictionaries in real-time. |
| `pull` | Pulls dictionaries from a remote source. |
| `push` | Pushes dictionaries to a remote source. |
| `test` | Runs tests on dictionaries. |
| `transform` | Transforms dictionaries between formats. |
| `fill` | Fills dictionaries with missing translations using AI. |
| `reviewDoc` | Reviews documentation for internationalization. |
| `translateDoc` | Translates documentation using AI. |