Cursor Rules — gtrias/i18next-mcp-server
A comprehensive Model Context Protocol (MCP) server that provides automated translation management capabilities for Cursor and other AI assistants, enabling direct interaction with i18next translation
6/19/2026 · 17 viewsCursor rules
i18next Translation Management Rules
Available MCP Tools
You have access to i18next-mcp-server tools for managing translations:
Core Tools:
get_project_info- Get project configuration and translation statushealth_check- Check translation files for issues (use summary: true for quick overview)validate_files- Validate JSON syntax and structurelist_files- List all translation files with metadata
Analysis Tools:
coverage_report- Generate translation coverage statisticsquality_analysis- Analyze translation quality and consistencyusage_analysis- Find unused translation keys in codescan_code_for_missing_keys- Scan codebase for missing translation keys
Management Tools:
sync_missing_keys- Add missing keys across all languagesadd_translation_key- Add new translation keys with valuesget_missing_keys- Get detailed list of missing keys by languageexport_data- Export translations in various formats (json, csv, xlsx)
Translation Workflow Guidelines:
- Before making translation changes: Always run
health_checkwith summary: true - When adding new features: Use
scan_code_for_missing_keysto find missing translations - For translation consistency: Use
quality_analysisto identify issues - When managing keys: Use
sync_missing_keysto ensure all languages have the same keys - For project overview: Start with
get_project_infoto understand the current state
Best Practices:
- Always sync missing keys before adding new translations
- Use the health check to identify issues before committing changes
- Check coverage reports to ensure translation completeness
- Validate files after manual edits to catch JSON syntax errors
- Use meaningful namespaces to organize translations logically
Common Commands:
- Quick status check:
health_checkwith summary: true - Find missing translations:
get_missing_keyswith format: "summary" - Add missing keys:
sync_missing_keyswith appropriate target languages - Export for translators:
export_datawith format: "xlsx" or "csv"
When working with translations, prefer using these MCP tools over manual file editing to ensure consistency and catch issues early.
Source: gtrias/i18next-mcp-server · 12★ Repo: A comprehensive Model Context Protocol (MCP) server that provides automated translation management capabilities for Cursor and other AI assistants, enabling direct interaction with i18next translation files, health checking, missing key detection, and automated translation workflows.