Loading...
{
"mcpServers": {
"lara": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp.laratranslate.com/v1",
"--header",
"x-lara-access-key-id: ${X_LARA_ACCESS_KEY_ID}",
"--header",
"x-lara-access-key-secret: ${X_LARA_ACCESS_KEY_SECRET}"
],
"env": {
"X_LARA_ACCESS_KEY_ID": "<YOUR_ACCESS_KEY_ID>",
"X_LARA_ACCESS_KEY_SECRET": "<YOUR_ACCESS_KEY_SECRET>"
}
}
}
}translateTranslates text between specified languages using the Lara Translate API.
Translation itself is sandboxed; risk comes from potential misuse of the API.
list_glossariesLists available glossaries with their details.
Read-only operation; no modification of data.
get_glossaryRetrieves a specific glossary by its ID.
Read-only operation; no modification of data.
list_memoriesLists available translation memories and their details.
Read-only operation; no modification of data.
create_memoryCreates a new translation memory.
Creates new data, but does not modify existing system configurations.
update_memoryUpdates the name of an existing translation memory.
Modifies existing data, but does not affect system-level settings.
delete_memoryDeletes a translation memory.
Deletes data, which could have unintended consequences if not carefully managed.
add_translationAdds a translation unit to a translation memory.
Adds data to a translation memory, but does not modify system configurations.
delete_translationDeletes a translation unit from a translation memory.
Deletes data from a translation memory, but does not affect system-level settings.
import_tmxImports a TMX file into a translation memory.
Imports data from an external file, which could contain malicious content if not validated.
check_import_statusChecks the status of a TMX file import.
Read-only operation; no modification of data.
The Lara Translate MCP server is relatively safe for single-user or trusted environments. Risks are associated with API key management and potential data exposure if the server is not properly secured. Multi-tenant scenarios require careful credential isolation.