What is the io.github.rog0x/i18n MCP server?
Locale detect, translations, plurals for AI agents
How to install io.github.rog0x/i18n
Copy-paste configuration for popular MCP clients.
transport: stdio
Config generated by PluginBench — verify against the source before use.Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"i18n": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-i18n-tools"
]
}
}
}Cursor
~/.cursor/mcp.json
{
"mcpServers": {
"i18n": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-i18n-tools"
]
}
}
}Windsurf
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"i18n": {
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-i18n-tools"
]
}
}
}VS Code
.vscode/mcp.json
{
"servers": {
"i18n": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rog0x/mcp-i18n-tools"
]
}
}
}Claude Code
claude mcp add i18n -- npx -y @rog0x/mcp-i18n-tools