Crowdin MCP Server
Enables AI assistants to manage Crowdin translation projects with tools for listing projects, files, source strings, translations, and performing bulk search-and-replace operations.
README
Crowdin MCP Server
A Model Context Protocol (MCP) server that exposes Crowdin translation management capabilities as tools for AI assistants.
Features
The server provides the following tools:
| Tool | Description |
|---|---|
list_projects |
List all accessible Crowdin projects |
get_project |
Get detailed project information |
list_files |
List all source files in a project |
translation_progress |
Get translation & approval progress by language |
list_source_strings |
List source strings with filtering (file, CroQL, text) |
get_source_string |
Get a single source string by ID |
list_language_translations |
List translations for a language |
list_string_translations |
List all translations for a specific string |
add_translation |
Add or propose a new translation |
delete_translation |
Delete a specific translation |
delete_all_translations |
Delete all translations for a string |
approve_translation |
Approve a translation |
remove_approval |
Remove a translation approval |
search_and_replace_translations |
Bulk find & replace in translations |
Prerequisites
- Node.js >= 18
- A Crowdin API token
Installation
npm install
Configuration
Set the CROWDIN_TOKEN environment variable:
export CROWDIN_TOKEN="your-crowdin-api-token"
Usage
Development
npm run dev
Production
npm run build
npm start
MCP Client Configuration
Add the server to your MCP client (e.g. VS Code, Claude Desktop):
{
"mcpServers": {
"crowdin": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"CROWDIN_TOKEN": "your-crowdin-api-token"
}
}
}
}
Or for development with tsx:
{
"mcpServers": {
"crowdin": {
"command": "npx",
"args": ["tsx", "src/index.ts"],
"env": {
"CROWDIN_TOKEN": "your-crowdin-api-token"
}
}
}
}
Scripts
Utility scripts in scripts/ for bulk translation operations:
| Script | Purpose |
|---|---|
fix-translations.ts |
Bulk search & replace for branding updates |
fix-followup.ts |
Follow-up fixes after initial bulk update |
fix-individual-qa.ts |
Fix individual QA issues |
approve-fixes.ts |
Approve corrected translations |
verify-fixes.ts |
Verify applied fixes |
assess-translations.ts |
Assess translation quality |
compare-translations.ts |
Compare translations across languages |
revoke-all-approvals.ts |
Revoke all approvals for a language |
search-replace-preview.ts |
Preview search & replace changes |
Run any script with:
npx tsx scripts/<script-name>.ts
Tech Stack
- TypeScript
- @modelcontextprotocol/sdk — MCP server SDK
- @crowdin/crowdin-api-client — Crowdin API client
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.