by DeepLcom
Provides translation and rephrasing capabilities powered by the DeepL API via a Model Context Protocol server.
Provides translation and rephrase tools that invoke DeepL's API, exposing them through a Model Context Protocol (MCP) server. The server can be called by MCP‑compatible clients such as Claude Desktop.
npx deepl-mcp-server
npm install deepl-mcp-server
then run npx deepl-mcp-server
or node ./node_modules/deepl-mcp-server/src/index.mjs
.DEEPL_API_KEY
with your DeepL API key and point the client (e.g., Claude Desktop) to the command npx deepl-mcp-server
.npx
.DEEPL_API_KEY
.formality
parameter with values like less
, more
, default
, prefer_less
, or prefer_more
.get-source-languages
and get-target-languages
tools.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": [ "deepl-mcp-server" ], "env": { "DEEPL_API_KEY": "<YOUR_API_KEY>" } } } }
Explore related MCPs that share similar capabilities and solve comparable challenges
by intento
Provides translation capabilities via the Intento API through an MCP server, exposing a translate tool and a language‑codes resource for agents.
by vlinr
Provides automated translation of localization files (.ts, .js, .json) using large language models, extracting the target language from the filename and supporting both single‑file and directory batch processing.
by zed-industries
A high‑performance, multiplayer code editor designed for speed and collaboration.
by modelcontextprotocol
A Model Context Protocol server that provides web content fetching capabilities.
by modelcontextprotocol
Model Context Protocol Servers
by modelcontextprotocol
An MCP server implementation that provides a tool for dynamic and reflective problem-solving through a structured thinking process.
by modelcontextprotocol
A Model Context Protocol server for Git repository interaction and automation.
by modelcontextprotocol
A basic implementation of persistent memory using a local knowledge graph. This lets Claude remember information about the user across chats.
by modelcontextprotocol
A Model Context Protocol server that provides time and timezone conversion capabilities.