by DeepLcom
Provides translation and rephrasing capabilities via the DeepL API, exposing tools through a Model Context Protocol server.
Deepl MCP Server offers a set of MCP‑compatible tools that enable text translation, language detection, formality control, and rephrasing by leveraging the DeepL API. It can be integrated with clients such as Claude Desktop or any MCP‑compatible environment.
npx deepl-mcp-server
npm install deepl-mcp-server
npx deepl-mcp-server
DEEPL_API_KEY
environment variable.npx
.Q: Do I need a DeepL API key? A: Yes. Obtain one from DeepL’s API portal; a free tier allows up to 500,000 characters per month.
Q: Which environment variables are required?
A: Set DEEPL_API_KEY
with your DeepL API key.
Q: Can I control formality of translations?
A: Yes. Use the formality
parameter with values like less
, more
, default
, prefer_less
, or prefer_more
.
Q: How do I list supported languages?
A: Call the get-source-languages
and get-target-languages
tools provided by the server.
Q: What if I exceed my API quota? A: The server will return an error; check your DeepL usage limits and consider upgrading your plan.
A Model Context Protocol (MCP) server that provides translation capabilities using the DeepL API.
The easiest way to run this server is to use the npm package without installing anything:
npx deepl-mcp-server
If you want to install this locally, so you can play with it to your heart's content, you can do so using npm:
npm install deepl-mcp-server
Alternately, if you want to contribute, you can clone this repository and install dependencies:
git clone https://github.com/DeepLcom/deepl-mcp-server.git
cd deepl-mcp-server
npm install
You'll need a DeepL API key to use this server. You can get one by signing up at DeepL API. With a DeepL API Free account you can translate up to 500,000 characters/month for free.
This MCP server integrates with Claude Desktop to provide translation capabilities directly in your conversations with Claude.
Install Claude Desktop if you haven't already
Create or edit the Claude Desktop configuration file:
~/Library/Application Support/Claude/claude_desktop_config.json
%AppData%\Claude\claude_desktop_config.json
~/.config/Claude/claude_desktop_config.json
Add the DeepL MCP server configuration. If you want to use the npm package without installing anything, as described above:
{
"mcpServers": {
"deepl": {
"command": "npx",
"args": ["deepl-mcp-server"],
"env": {
"DEEPL_API_KEY": "{YOUR_API_KEY}"
}
}
}
}
Or, if you installed this locally, give Claude an absolute path to the JS file, like this:
{
"mcpServers": {
"deepl": {
"command": "node",
"args": ["/{ABSOLUTE_PATH_TO_SERVER}/deepl-mcp-server/src/index.mjs"],
"env": {
"DEEPL_API_KEY": "{YOUR_API_KEY}"
}
}
}
}
If you've pulled down this code, but you haven't done an npm install
, or if you just prefer to, you can use npx /{ABSOLUTE_PATH_TO_SERVER}/deepl-mcp-server
here instead of node /{ABSOLUTE_PATH_TO_SERVER}/deepl-mcp-server/src/index.mjs
.
{ABSOLUTE_PATH_TO_SERVER}
with an absolute path to your local copy of this repository - for example, /Users/robotwoman/Code/deepl-mcp-server
{YOUR_API_KEY}
with your actual DeepL API keyOnce configured, Claude will be able to use the DeepL translation tools when needed. You can ask Claude to translate text between languages, and it will use the DeepL API behind the scenes.
This server provides the following tools:
get-source-languages
: Get list of available source languages for translationget-target-languages
: Get list of available target languages for translationtranslate-text
: Translate text to a target languagerephrase-text
: Rephrase text in the same or different languageThis tool translates text between languages using the DeepL API.
Parameters:
text
: The text to translatetargetLang
: Target language code (e.g., 'en-US', 'de', 'fr')formality
(optional): Controls formality level of the translation:
'less'
: use informal language'more'
: use formal, more polite language'default'
: use default formality'prefer_less'
: use informal language if available, otherwise default'prefer_more'
: use formal language if available, otherwise defaultThis tool rephrases text in the same or different language using the DeepL API.
Parameters:
text
: The text to rephraseThe DeepL API supports a wide variety of languages for translation. You can use the get-source-languages
and get-target-languages
tools to see all currently supported languages.
Some examples of supported languages include:
For debugging information, visit the MCP debugging documentation.
If you encounter errors with the DeepL API, check the following:
MIT
Please log in to share your review and rating for this MCP.
{ "mcpServers": { "deepl": { "command": "npx", "args": [ "-y", "deepl-mcp-server" ], "env": { "DEEPL_API_KEY": "<YOUR_API_KEY>" } } } }
Discover more MCP servers with similar functionality and use cases
by lingodotdev
Provides an AI‑powered i18n toolkit that enables instant localization of web and mobile applications using large language models, with options to bring your own LLM or use the built‑in translation engine.
by translated
Provides translation capabilities via the Model Context Protocol, allowing AI applications to access Lara Translate API for language detection, context‑aware translation, and translation memory management.
by netdata
Real-time, per‑second infrastructure monitoring platform that provides instant insights, auto‑discovery, edge‑based machine‑learning anomaly detection, and lightweight visualizations without requiring complex configuration.
by zed-industries
Provides real-time collaborative editing powered by Rust, enabling developers to edit code instantly across machines with a responsive, GPU-accelerated UI.
by github
Enables AI agents, assistants, and chatbots to interact with GitHub via natural‑language commands, providing read‑write access to repositories, issues, pull requests, workflows, security data and team activity.
by daytonaio
Provides a secure, elastic sandbox environment for executing AI‑generated code with isolated runtimes and sub‑90 ms provisioning.
by RooCodeInc
An autonomous coding agent that lives inside VS Code, capable of generating, refactoring, debugging code, managing files, running terminal commands, controlling a browser, and adapting its behavior through custom modes and instructions.
by chaitin
Provides a self‑hosted web application firewall and reverse‑proxy that filters, monitors, and blocks malicious HTTP/S traffic, protecting web applications from attacks such as SQL injection, XSS, brute‑force, bot abuse, and various code injections.
by PipedreamHQ
Connect APIs quickly, run event‑driven automations, and execute custom code in Node.js, Python, Go, or Bash on a hosted platform.