mcp-lokalise-server logo

mcp-lokalise-server

mert574/mcp-lokalise-server
0 starsUpdated 2025-07-25Community

Is this your server?

Add your score badge to your README and get your server in front of 45k+ builders a month.

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

An MCP server for managing Lokalise translations, enabling creation, retrieval, and deletion of translation keys.

README.md

MCP Lokalise Server

A Model Context Protocol (MCP) server for managing Lokalise translations.

Features

  • ✅ Create translation keys with multiple language translations
  • ✅ Get specific translation key details by name
  • ✅ Delete translation keys

Installation

npm install

Usage

The server can be used with any MCP-compatible client. It provides three main tools:

1. create_lokalise_key

Create a new translation key with translations:

{
  "key_name": "my_new_key",
  "translations": {
    "en": "Hello World",
    "de": "Hallo Welt"
  }
}

2. get_lokalise_key

Get details for a specific translation key by name:

{ "key_name": "my_key" }

3. delete_lokalise_key

Delete a translation key by ID:

{ "key_id": "123456789" }

Configuration

Create your API token here: https://app.lokalise.com/profile#apitokens

The server uses environment variables for configuration:

Environment Variables

  • LOKALISE_PROJECT_ID - Your Lokalise project ID
  • LOKALISE_API_TOKEN - Your Lokalise API token
  • LOKALISE_PLATFORMS - Comma-separated platforms (default: web)

MCP Client Configuration

Add to your MCP client configuration:

{
  "mcpServers": {
    "lokalise": {
      "command": "node",
      "args": ["/path/to/mcp-lokalise-server/index.js"],
      "env": {
        "LOKALISE_PROJECT_ID": "your-project-id",
        "LOKALISE_API_TOKEN": "your-api-token",
        "LOKALISE_PLATFORMS": "web"
      }
    }
  }
}

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Other servers.