# Lokalise Mcp

> The Lokalise MCP Server brings Lokalise's localization power to Claude and AI assistants—manage projects, keys, and translations by chat.

- **Type:** MCP server
- **Install:** `agentstack add mcp-abdallahaho-lokalise-mcp`
- **Verified:** Yes — security-reviewed for prompt injection and unsafe behavior
- **Seller:** [AbdallahAHO](https://agentstack.voostack.com/s/abdallahaho)
- **Installs:** 0
- **Category:** [Integrations](https://agentstack.voostack.com/c/integrations)
- **Latest version:** 0.1.0
- **License:** MIT
- **Upstream author:** [AbdallahAHO](https://github.com/AbdallahAHO)
- **Source:** https://github.com/AbdallahAHO/lokalise-mcp

## Install

```sh
agentstack add mcp-abdallahaho-lokalise-mcp
```

Requires the [AgentStack CLI](https://agentstack.voostack.com/docs/cli). Works with Claude Code, Cursor, and any MCP-compatible agent.

## About

# Lokalise MCP Server

> **⚠️ Disclaimer**: This is an unofficial, personal project and is not affiliated with, endorsed by, or associated with Lokalise Inc. It uses the open-source [Lokalise Node.js SDK](https://github.com/lokalise/node-api) to provide MCP integration. All code and implementation are my own work.

  Bring the power of Lokalise to your AI assistant

  [](https://smithery.ai/server/@AbdallahAHO/lokalise-mcp)
  [](https://www.npmjs.com/package/lokalise-mcp)
  [](https://opensource.org/licenses/MIT)
  [](https://www.typescriptlang.org/)
  [](https://nodejs.org/)

## 🎯 What Is This?

The Lokalise MCP Server connects AI assistants like Claude to [Lokalise](https://lokalise.com), the leading translation management platform. Through natural conversation, you can manage translation projects, update content, and automate localization workflows—no coding required.

**Perfect for:** Product Managers • Developers • Localization Teams • Content Teams

---

## 🚀 Key Features & Capabilities

Transform your localization workflow with **59 tools** across **11 domains** and **17 pre-built automation templates**:

| Feature Category | Capabilities | What You Get |
|-----------------|-------------|--------------|
| **🎯 Strategic Management** | Portfolio analysis, project health monitoring, team coordination | Executive insights, bottleneck identification, resource optimization |
| **🔤 Smart Content Operations** | Bulk key operations (1000+ at once), filename filtering, platform tagging | Release-ready content management, iOS/Android/Web coordination |
| **🌍 Global Expansion** | Language addition, progress tracking, completion analytics | Market entry automation, translation velocity insights |
| **👥 Team Orchestration** | User groups, permissions, workload distribution, reviewer assignment | Optimal team structure, timezone-aware assignments |
| **🔄 Workflow Automation** | File processing, TM+MT integration, multi-stage review pipelines | End-to-end automation, quality gates, escalation rules |
| **📊 Real-time Monitoring** | Process dashboards, audit trails, bulk operation tracking | Operational visibility, failure detection, performance metrics |
| **🔒 Enterprise Security** | Multi-layer auth, secure token handling, rate limiting | Production-ready security, compliance support |

### 🎯 **Why to use Lokalise MCP?**

| **Traditional Approach** | **With Lokalise MCP** |
|--------------------------|----------------------|
| Manual project analysis across multiple screens | "Analyze my portfolio" → Instant strategic insights |
| Hours setting up review workflows | "Create review tasks for uploaded file" → Done in seconds |
| Complex team permission management | "Set up teams for 3 new markets" → Automated structure |
| Reactive problem-solving | Proactive bottleneck identification and recommendations |
| Tool-by-tool operations | Orchestrated multi-tool workflows with one prompt |

## ✨ See It In Action

Copy these prompts to experience sophisticated multi-tool orchestration. From simple requests to advanced patterns—Claude handles the complexity automatically:

### 💻 **React i18n Development Workflow (Cursor IDE)**
*MCP Tools: `lokalise_list_projects` → `lokalise_list_keys` → `lokalise_create_keys` → `lokalise_list_usergroups` → `lokalise_create_task`*

```
Prompt: "I'm working on a new checkout flow in React. Please scan my current
components, extract all hardcoded strings that need internationalization,
convert them to i18n keys using our naming convention (checkout.step1.title),
refactor the JSX to use our i18next hooks, then sync the new keys to our
'Mobile App' project in Lokalise and create translation tasks for our EU markets using relevant tools in configured Lokalise MCP.

Use these exact Lokalise MCP tools:
- lokalise_list_projects (to find Mobile App project)
- lokalise_list_keys (to check for existing keys)
- lokalise_create_keys (to upload new i18n keys)
- lokalise_list_usergroups (to find EU translation teams)
- lokalise_create_task (to create translation tasks)"

// Before: components/checkout/PaymentStep.tsx
const PaymentStep = () => (
  
    Payment Information
    Enter your card details below
    Continue to Review
  
);

What Claude orchestrates with MCP tools:
✓ `lokalise_list_projects` - Locates 'Mobile App' project
✓ `lokalise_list_keys` - Validates against existing keys to prevent duplicates
✓ `lokalise_create_keys` - Bulk uploads new i18n keys with platform tags:
  [{
    key_name: "checkout.payment.title",
    platforms: ["web", "ios", "android"],
    translations: [{ language_iso: "en", translation: "Payment Information" }]
  }]
✓ `lokalise_list_usergroups` - Resolves "EU markets" to specific translation teams
✓ `lokalise_create_task` - Creates translation tasks for DE, FR, ES, IT with team assignments
✓ Auto-refactors JSX to use useTranslation hooks
✓ Updates local i18n JSON files with new key structure

// After: Automatically refactored
const PaymentStep = () => {
  const { t } = useTranslation();
  return (
    
      {t('checkout.payment.title')}
      {t('checkout.payment.subtitle')}
      {t('checkout.payment.continue')}
    
  );
};

Result: Code internationalized, 12 new keys synced via Lokalise MCP tools,
translation tasks created for 4 languages—all without leaving your IDE.
Development workflow stays uninterrupted while localization setup happens
automatically through direct lokalise MCP integration.
```

### 📊 **CSV Translation Upload Automation**
*Triggers: `lokalise_list_projects` → CSV parsing → `lokalise_create_keys` (bulk) → `lokalise_list_project_languages` → `lokalise_create_task` (per language)*

```
Prompt: "I'm attaching our latest feature strings export from Product. It's a CSV with
columns: key_id, context, en_source, es_draft, fr_draft. Using relevant tools in configured Lokalise MCP; Please upload these 50 new keys to our 'E-commerce Platform' project, create translation tasks for the missing
languages (German, Italian, Portuguese), and assign them to our relevant regional teams.
The Product team wants this shipped by end of sprint (March 15th)."

[Attach: feature_v3_strings.csv]

What Claude orchestrates:
✓ Parses CSV and validates column structure
✓ Locates E-commerce Platform project
✓ Creates 50 keys with English source + Spanish/French drafts
✓ Identifies missing target languages (DE, IT, PT)
✓ Resolves regional team assignments automatically
✓ Creates separate translation tasks per language/team
✓ Sets March 15th deadline with buffer for review
✓ Provides upload summary + task tracking URLs

Result: 50 keys uploaded, 3 translation tasks created, teams notified—
what used to take 2 hours of manual CSV imports, key creation, and task setup
now happens in 30 seconds with full audit trail and team coordination.
```

### 🎯 **Strategic Portfolio Dashboard**
*Triggers: `lokalise_list_projects` → `lokalise_get_project` (parallel) → `lokalise_list_project_languages` → `lokalise_list_tasks`*

```
Prompt: "I need a strategic overview of my localization portfolio. Using relevant tools in configured Lokalise MCP;
Show me which projects need immediate attention, identify bottlenecks across teams, and give me data-driven
recommendations for resource allocation. Include completion rates, task backlogs, and
any projects that haven't seen activity in the last 30 days."

What Claude does automatically:
✓ Fetches all projects with statistics
✓ Analyzes each project's health in parallel
✓ Cross-references team workloads
✓ Identifies stalled projects and overdue tasks
✓ Generates strategic recommendations

Result: Executive-level insights you can act on immediately
```

### 🔄 **Intelligent File Processing Workflow**
*Triggers: `lokalise_list_projects` → `lokalise_list_keys` (filter by filename) → `lokalise_list_usergroups` + `lokalise_list_contributors` → `lokalise_list_project_languages` → `lokalise_create_task` (multiple)*

```
Prompt: "I just uploaded 'user-onboarding-v2.json' to my Mobile App project via the Lokalise UI.
The TM+MT processing is done. Now create review tasks for quality assurance - assign
Spanish content to our EMEA translation team, French to Marie (marie@ourcompany.com),
and German to whoever is available on the DACH team. Set the deadline for next Friday."

What Claude orchestrates:
✓ Locates your Mobile App project
✓ Finds all keys from the uploaded file
✓ Resolves "EMEA translation team" → user group ID
✓ Resolves "marie@ourcompany.com" → contributor ID
✓ Finds DACH team members and assigns optimally
✓ Creates separate review tasks per language
✓ Sets appropriate deadlines and task descriptions

Result: Complete review workflow ready in seconds, not minutes of manual setup
```

### 🚀 **Bulk Operations with Smart Validation**
*Triggers: `lokalise_list_projects` → `lokalise_list_keys` (filtered) → `lokalise_bulk_update_keys` → `lokalise_list_tasks` → `lokalise_create_task`*

```
Prompt: "I need to clean up our iOS release. Find all keys tagged 'onboarding' across all
projects, ensure they have iOS platform designation, verify they're all translated to
Spanish and French, and create catch-up tasks for any missing translations. Also check
if any of these keys have been changed in the last 7 days and might need re-review."

What Claude coordinates:
✓ Searches across all projects for 'onboarding' tagged keys
✓ Audits platform tags and adds iOS where missing
✓ Cross-checks translation completeness for Spanish/French
✓ Identifies recently modified keys needing re-review
✓ Creates targeted tasks for missing translations
✓ Provides summary of changes and remaining work

Result: Release-ready content with full audit trail and completion plan
```

> **💡 Master Tip**: The more context and constraints you provide, the smarter Claude's orchestration becomes. Include timelines, priorities, team constraints, and business objectives for maximum AI leverage.

---

## 🎯 Built-in Workflow Prompts

Beyond these examples, the MCP server includes **17 sophisticated prompt templates** that orchestrate complex multi-tool workflows automatically. These aren't just examples—they're production-ready templates you can use immediately.

### 📋 **Project Management Suite**
Ready-to-use prompts for strategic project oversight:

| Prompt Template | What It Does | Tools Orchestrated |
|----------------|--------------|-------------------|
| **`project_portfolio_overview`** | Strategic analysis across all projects with bottleneck identification | 4-6 tools in parallel |
| **`project_deep_dive`** | Comprehensive health analysis of a specific project | 6-8 tools coordinated |
| **`new_project_setup`** | Complete project creation with languages and initial structure | 5-7 tools sequenced |
| **`project_cleanup`** | Safe removal of deprecated content with impact analysis | 3-5 tools with validation |

### 🌍 **Localization Workflow Suite**
Automated language expansion and progress monitoring:

| Prompt Template | What It Does | Tools Orchestrated |
|----------------|--------------|-------------------|
| **`language_expansion`** | Add new markets with proper configuration and team setup | 4-6 tools coordinated |
| **`translation_progress_check`** | Comprehensive progress analysis with actionable insights | 3-5 tools in parallel |
| **`bulk_key_creation`** | Smart content organization for new features | 3-4 tools sequenced |

### 🔄 **Advanced Workflow Automation**
Sophisticated multi-stage orchestration:

| Prompt Template | What It Does | Tools Orchestrated |
|----------------|--------------|-------------------|
| **`post_upload_review_workflow`** | Complete review pipeline for uploaded files with team assignment | 6-8 tools orchestrated |
| **`document_extraction_review_workflow`** | Extract uploaded CSV/JSON content as keys + create translation tasks | 5-7 tools coordinated |
| **`automated_review_pipeline`** | Multi-stage review with quality gates and escalation | 8-10 tools orchestrated |
| **`team_translation_setup`** | Organize teams with optimal workload distribution | 6-8 tools coordinated |

### 🚀 **Enterprise Automation Suite**
Production-ready workflows for complex operations:

| Prompt Template | What It Does | Tools Orchestrated |
|----------------|--------------|-------------------|
| **`process_monitoring_dashboard`** | Real-time monitoring across projects with failure detection | 4-6 tools in parallel |
| **`user_group_audit`** | Comprehensive team analysis with security recommendations | 5-7 tools coordinated |
| **`translation_memory_import`** | Smart TM integration with conflict resolution | 6-8 tools orchestrated |
| **`bulk_operations_monitor`** | Track and audit large-scale changes with rollback info | 4-6 tools coordinated |
| **`team_onboarding_workflow`** | Complete new member setup with permissions and training | 5-7 tools sequenced |

### 🎭 **How to Use Prompt Templates**

```bash
# In Claude, simply reference the prompt name:
"Use the project_portfolio_overview prompt from configured Lokalise MCP to analyze my localization portfolio"

# Or trigger directly with parameters:
"Run the post_upload_review_workflow from configured Lokalise MCP  for 'user-guide.pdf' in Mobile App project,
assign Spanish to EMEA Team and French to marie@company.com"

# Customize for your needs:
"Use the team_translation_setup prompt from configured Lokalise MCP but focus on timezone optimization
for our distributed team across 4 continents"
```

**Template Benefits:**
- 🎯 **Zero Learning Curve**: Pre-built workflows ready to use
- 🚀 **Multi-Tool Orchestration**: Each template coordinates 3-10 tools automatically
- 🧠 **Context Awareness**: Smart parameter resolution and error handling
- 📊 **Rich Outputs**: Formatted reports with actionable insights
- ⚡ **Production Ready**: Battle-tested in real localization projects

---

## 📦 Quick Start

Get up and running in under 60 seconds:

### 🚀 **Recommended: One-Click Install**

[](https://smithery.ai/server/@AbdallahAHO/lokalise-mcp)

```bash
# Install for Claude Desktop (most popular)
npx -y @smithery/cli install @AbdallahAHO/lokalise-mcp --client claude

# Other clients: cursor, vscode, raycast, gemini
```

**What happens:** Auto-installs, configures permissions, prompts for your Lokalise API key, ready to use.

### 🎯 **Alternative Installation Methods**

Claude Desktop Extension (.dxt)

**Fast local install, no Node.js required:**

1. Download the latest `.dxt` from [Releases](https://github.com/AbdallahAHO/lokalise-mcp/releases)
2. Double-click or drag into Claude Desktop → Settings → Extensions
3. Enter your `LOKALISE_API_KEY` when prompted
4. Verify: "Can you list my Lokalise projects?"

NPX (No Installation)

**Run directly without installing:**

```bash
# Direct execution
npx lokalise-mcp
```

**Claude Desktop config** (`~/Library/Application Support/Claude/claude_desktop_config.json`):
```json
{
  "mcpServers": {
    "lokalise": {
      "command": "npx",
      "args": ["-y", "lokalise-mcp"],
      "env": {"LOKALISE_API_KEY": "your-api-key-here"}
    }
  }
}
```

Global Install

```bash
npm install -g lokalise-mcp
lokalise-mcp  # Run the server
```

### 🔑 **Get Your API Key**

1. Log in to [Lokalise](https://app.lokalise.com)
2. Go to **Profile** → **API Tokens** ([https://app.lokalise.com/profile#apitokens](https://app.lokalise.com/profile#apitokens))
3. Click **Generate new token**
4. Copy and save securely

## ⚙️ Configuration

### API Key Setup

The Lokalise API key can be configured in multiple ways (in order of priority):

1. **Environment Variable** (Recommended for security):
   ```bash
   export LOKALISE_API_KEY="your-api-key-here"
   ```

2. **`.env` File** (For local development):
   ```bash
   cp .env.example .env
   # Edit .env and add your API key
   ```

3. **Global MCP Config** (`~/.mcp/configs.json`):
   ```json
   {
     "lokalise-mcp": {
       "LOKALISE_API_KEY": "your-api-key-here"
     }
   }
   ```

### Getting Your API Token

1. Log in to [Lokalise](https://app.lokalise.c

…

## Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

- **Author:** [AbdallahAHO](https://github.com/AbdallahAHO)
- **Source:** [AbdallahAHO/lokalise-mcp](https://github.com/AbdallahAHO/lokalise-mcp)
- **License:** MIT

Install and usage instructions live in the source repository linked above.

## Pricing

- **Free** — Free

## Security capabilities

Automated source analysis of v0.1.0 — what this tool can access:

- **Network access:** no
- **Filesystem access:** no
- **Shell / process execution:** no
- **Environment & secrets:** yes
- **Dynamic code execution:** no

*"Yes" means the capability is present in the source — more access means more to trust, not that it is unsafe.*


## Versions

- **0.1.0** — security scan: passed — Imported from the upstream source.

## Links

- Listing page: https://agentstack.voostack.com/l/mcp-abdallahaho-lokalise-mcp
- Seller: https://agentstack.voostack.com/s/abdallahaho
- Browse the marketplace: https://agentstack.voostack.com/browse

---
Listed on AgentStack — the marketplace for AI agent skills and MCP servers. Every listing is security-reviewed. Creators keep 70%.
