Mcp Lokalise Server — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Mcp Lokalise Server (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
A Model Context Protocol (MCP) server for managing Lokalise translations.
npm installThe server can be used with any MCP-compatible client. It provides three main tools:
Create a new translation key with translations:
{
"key_name": "my_new_key",
"translations": {
"en": "Hello World",
"de": "Hallo Welt"
}
}Get details for a specific translation key by name:
{ "key_name": "my_key" }Delete a translation key by ID:
{ "key_id": "123456789" }Create your API token here: https://app.lokalise.com/profile#apitokens
The server uses environment variables for configuration:
LOKALISE_PROJECT_ID - Your Lokalise project IDLOKALISE_API_TOKEN - Your Lokalise API tokenLOKALISE_PLATFORMS - Comma-separated platforms (default: web)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"
}
}
}
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.