DeepL MCP Server
Provides tools for translating text between supported languages and retrieving lists of available source and target languages using the DeepL API.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@DeepL MCP Servertranslate 'Hello, how are you?' to German"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
DeepL MCP Server
An MCP (Model Context Protocol) server providing high-quality translation capabilities via the DeepL API.
Features
This server provides 24 tools for working with DeepL:
Tool | Description | Required Params |
| Translate text with formality, context, glossary, model, tag-handling, style, translation-memory, and custom-instruction options |
|
| Improve text clarity and style using DeepL Write with optional writing style and tone |
|
| List v2 source languages | — |
| List v2 target languages with formality support info | — |
| Get API usage statistics | — |
| Retrieve beta v3 supported languages by product with feature metadata | — |
| Retrieve beta v3 language products and feature rules | — |
| List language pairs supported by glossaries | — |
| List v3 glossaries | — |
| Retrieve v3 glossary metadata |
|
| Retrieve glossary dictionary entries |
|
| Create a v3 multilingual glossary |
|
| Delete a v3 glossary |
|
| List v3 translation memories available to the account | — |
| List v3 style rule lists | — |
| Retrieve a v3 style rule list |
|
| Create a v3 style rule list |
|
| Update a v3 style rule list name |
|
| Delete a v3 style rule list |
|
| Request a DeepL Voice realtime WebSocket session |
|
| Request a replacement DeepL Voice realtime token | — |
| Upload a local file for document translation |
|
| Check document translation status |
|
| Download a translated document to a local path |
|
Translation Features
Next-gen model selection — Use
model_typevalues such asquality_optimizedorprefer_quality_optimizedFormality control — Adjust tone for formal/informal contexts
Context parameter — Provide additional context for better accuracy (not billed)
Glossary support — Create, list, inspect, use, and delete DeepL v3 glossaries
Batch translation — Translate multiple texts in a single request
Preserve formatting — Keep original text formatting
HTML/XML tag handling — Use
tag_handling,tag_handling_version,ignore_tags,splitting_tags, and related optionsBilling visibility — Use
show_billed_charactersto include billed character counts in translation responsesDocument translation — Upload, poll, and download translated files
v3 language metadata — Retrieve product-specific language support and feature rules
Translation memories — List account translation memories and use them in translation requests
Style rules — List, create, inspect, rename, delete, and use style rule lists
Voice session setup — Request or reconnect DeepL Voice realtime WebSocket sessions; audio streaming is done by the returned WebSocket URL
DeepL Write options — Rephrase with
writing_styleandtonewhen the plan supports Write APISentence splitting control — Control how sentences are split
API Type Auto-Detection
The server automatically detects whether you're using the Free or Pro API based on your key format:
Keys ending in
:fx→ Free API (api-free.deepl.com)Other keys → Pro API (
api.deepl.com)
Related MCP server: GeoServer MCP Server
Prerequisites
Node.js 18+ (including Node.js 25)
DeepL API Key — Sign up here (Free tier available)
Quick Start
1. Clone and Build
git clone https://github.com/watchdealer-pavel/deepl-mcp-server.git
cd deepl-mcp-server
npm install2. Configure Your MCP Client
Add to your MCP client configuration:
Claude Desktop (~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"deepl": {
"command": "node",
"args": ["/path/to/deepl-mcp-server/build/index.js"],
"env": {
"DEEPL_API_KEY": "your-api-key-here"
}
}
}
}Claude Code (.mcp.json in your project):
{
"mcpServers": {
"deepl": {
"command": "node",
"args": ["/path/to/deepl-mcp-server/build/index.js"],
"env": {
"DEEPL_API_KEY": "your-api-key-here"
}
}
}
}3. Restart Your MCP Client
Restart Claude Desktop or Claude Code to load the server.
Usage Examples
Basic Translation
{
"text": "Hello, how are you?",
"target_lang": "DE"
}Formal Translation with Context
{
"text": "Thanks for your help!",
"target_lang": "DE",
"formality": "more",
"context": "Business email to a client"
}Batch Translation
{
"text": ["Hello", "Goodbye", "Thank you"],
"target_lang": "FR"
}Check API Usage
Use get_usage to see your current quota:
{
"character_count": 12500,
"character_limit": 500000,
"characters_remaining": 487500,
"percent_used": "2.50%",
"api_type": "Free"
}Supported Languages
Source Languages (auto-detected if omitted)
AR, BG, CS, DA, DE, EL, EN, ES, ET, FI, FR, HU, ID, IT, JA, KO, LT, LV, NB, NL, PL, PT, RO, RU, SK, SL, SV, TR, UK, ZH
Target Languages
All source languages plus regional variants:
EN-GB— British EnglishEN-US— American EnglishPT-BR— Brazilian PortuguesePT-PT— European PortugueseZH-HANS— Simplified ChineseZH-HANT— Traditional Chinese
Use get_target_languages for a complete list with formality support indicators.
Error Handling
The server handles common API errors:
400 — Invalid parameters
401/403 — Authentication failed or feature not available on the current plan
429 — Rate limit exceeded
456 — Quota exceeded
Security and OSV Status
This repository has been scanned with Google's OSV-Scanner and remediated to a clean state.
Latest scan result: 0 known dependency vulnerabilities
Reports are written to
.osv/osv-report.jsonand.osv/osv-summary.mdRemediation notes are in
.osv/remediation-notes.mdThe vulnerable direct dependency chains were fixed by upgrading
@modelcontextprotocol/sdkandaxios
Run the scan locally:
export PATH="$HOME/.local/bin:$PATH"
osv-project-scan .Development
# Watch mode (auto-rebuild)
npm run watch
# Manual build
npm run build
# Run the server
npm start
# Test with MCP Inspector
npm run inspector
# Run live end-to-end tests against DeepL API
# Requires DEEPL_API_KEY in the environment and consumes a small number of billable characters.
npm run test:liveThe live test exercises translation, language listing, v3 language metadata, translation-memory listing, style-rule listing/create/get/update/delete when available, voice session request when available, usage, glossary create/use/delete, document upload/status/download, and DeepL Write. Free API keys may return an expected plan error for DeepL Write.
License
MIT License — see LICENSE file.
Links
DeepL Pro API — Sign up for API access
Model Context Protocol — MCP documentation
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/watchdealer-pavel/deepl-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server