Add translation keys to Lokalise projects. Requires a Lokalise API key.
A Minimal Command-line Program (MCP) server for adding translation keys to your Lokalise projects, designed for integration with Cursor or standalone use.
# For MCP usage (global installation)
npm install -g lokalise-mcp-server
# For library usage (project dependency)
npm install lokalise-mcp-server
NPM Package: https://www.npmjs.com/package/lokalise-mcp-server
This diagram illustrates the Model Context Protocol (MCP) flow between Cursor, your MCP server, and Lokalise.
🛠️ Add this to your mcp.json
(or configure via Cursor UI):
{
"mcpServers": {
"lokalise": {
"command": "npx",
"args": ["-y", "lokalise-mcp-server"],
"env": {
"LOKALISE_API_KEY": "your_actual_api_key"
}
}
}
}
No need to run Docker or Podman manually!
🐳 Make sure Docker or Podman is installed and running.
🛠️ Add this to your mcp.json
(or configure via Cursor UI):
{
"mcpServers": {
"lokalise": {
"command": "docker", // podman
"args": [
"run",
"--rm",
"-i",
"-e", "LOKALISE_API_KEY",
"rafee03/mcp-lokalise:latest"
],
"env": {
"LOKALISE_API_KEY": "your_actual_api_key"
}
}
}
}
podman
instead of docker
if you prefer.🔄 Restart Cursor. It will handle everything for you.
This tool takes these inputs:
SpaceX
).hello
)Hello
)web
, ios
)Example:
I want to add two keys, one is hello and another one is bye. their default values are Hello and Goodbye. both are in web platform. the project is spaceX
Cursor will automatically convert this to the correct input for the MCP tool.
TypeScript Source Files (src/):
Compiled JavaScript Files (dist/):
Other Files:
git clone https://github.com/mdrafee03/mcp-lokalise.git
cd mcp-lokalise
npm install
npm run build
In your MCP config (recommended for Cursor)
{
"mcpServers": {
"lokalise": {
"command": "node",
"args": ["{directory-of-the-project}/dist/mcp-server.js"],
"env": {
"LOKALISE_API_KEY": "your_actual_api_key"
}
}
}
}
npm run build
- Compile TypeScript to JavaScriptnpm run dev
- Run the MCP server in development mode with tsxnpm run server
- Run the HTTP server in development mode with tsxnpm run add-key
- Run the CLI tool in development mode with tsxnpm start
- Run the compiled MCP server from dist/MIT
Create and modify wireframes in the Frame0 app through natural language prompts.
A test server for local MCP development and setup.
Provides developers with continuous, project-centric context awareness. Requires a TursoDB database.
A customizable MCP service with flexible tool selection and configuration. Requires a 302AI API key.
Generate and edit images using OpenAI's GPT-4o image generation and editing APIs with advanced prompt control.
Advanced evaluation tools for AI safety, alignment, and performance using the Trustwise API.
A minimal, containerized base for building MCP servers with the Python SDK, featuring a standardized Docker image and local development setup.
A test server that demonstrates all features of the MCP protocol, including prompts, tools, resources, and sampling.
A Ruby gem providing secure Rails console access through MCP for AI agents and development tools.
Assists AI developers with requirement clarification, module design, and technical architecture.