Google Antigravity Directory

The #1 directory for Google Antigravity prompts, rules, workflows & MCP servers. Optimized for Gemini 3 agentic development.

Resources

PromptsMCP ServersAntigravity RulesGEMINI.md GuideBest Practices

Company

Submit PromptAntigravityAI.directory

Popular Prompts

Next.js 14 App RouterReact TypeScriptTypeScript AdvancedFastAPI GuideDocker Best Practices

Legal

Privacy PolicyTerms of ServiceContact Us
Featured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App ShowFeatured on FazierVerified on Verified ToolsFeatured on WayfindioAntigravity AI - Featured on Startup FameFeatured on Wired BusinessFeatured on Twelve ToolsListed on Turbo0Featured on findly.toolsFeatured on Aura++That App Show

© 2026 Antigravity AI Directory. All rights reserved.

The #1 directory for Google Antigravity IDE

This website is not affiliated with, endorsed by, or associated with Google LLC. "Google" and "Gemini" are trademarks of Google LLC.

Antigravity AI Directory
PromptsMCPBest PracticesUse CasesLearn
Home
MCP Servers
DeepL Translator MCP Server
globe

DeepL Translator MCP Server MCP Server

Official DeepL translation API integration

deepltranslationlanguagei18n

About

## DeepL MCP Server: Neural Machine Translation The **DeepL MCP Server** integrates the world's most accurate machine translation service directly into Google Antigravity, enabling AI assistants to translate text with exceptional quality programmatically. This integration brings state-of-the-art neural translation to your development workflow. ### Why DeepL MCP? - **Superior Quality**: Consistently outperforms other translation services in blind tests - **Natural Language**: Translations that read naturally and preserve original tone - **Document Translation**: Translate entire documents while preserving formatting - **Glossary Support**: Custom glossaries for consistent terminology translation - **Language Detection**: Automatic source language detection with high accuracy ### Key Features #### 1. Text Translation ```python from anthropic import Anthropic client = Anthropic() response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Translate this product description to German, French, and Spanish" }], tools=[{ "name": "deepl_translate", "description": "Translate text" }] ) ``` #### 2. Document Translation ```python # Translate documents response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Translate this PDF manual to Japanese while preserving formatting" }], tools=[{"name": "deepl_document", "description": "Translate documents"}] ) ``` #### 3. Glossary Management ```python # Use custom glossaries response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Create a glossary for our technical terms and use it for translation" }], tools=[{"name": "deepl_glossary", "description": "Manage glossaries"}] ) ``` #### 4. Formality Control ```python # Control translation style response = client.messages.create( model="claude-sonnet-4-20250514", max_tokens=1024, messages=[{ "role": "user", "content": "Translate this customer email to formal German" }], tools=[{"name": "deepl_formal", "description": "Control formality"}] ) ``` ### Configuration ```json { "mcpServers": { "deepl": { "command": "npx", "args": ["-y", "@anthropic/mcp-deepl"], "env": { "DEEPL_API_KEY": "your-deepl-api-key" } } } } ``` ### Use Cases **Content Localization**: Translate marketing content, documentation, and UI strings. **Customer Communication**: Translate support tickets and customer correspondence. **Document Processing**: Automate translation of contracts, manuals, and reports. **E-Commerce**: Translate product listings and descriptions for international markets. The DeepL MCP Server brings world-class neural translation directly into your development workflow, enabling high-quality multilingual content.

Installation

Configuration
{
  "mcpServers": {
    "deepl": {
      "mcpServers": {
        "deepl": {
          "env": {
            "DEEPL_API_KEY": "YOUR_API_KEY"
          },
          "args": [
            "-y",
            "deepl-mcp-server"
          ],
          "command": "npx"
        }
      }
    }
  }
}

How to Use

  1. 1Get DeepL API key (free tier: 500K chars/month)
  2. 2Configure DEEPL_API_KEY environment variable
  3. 3Supports automatic language detection

Related MCP Servers

🧰

Toolhouse MCP

Universal AI tool platform that equips your AI with production-ready capabilities. Execute code, browse the web, manage files, send emails, and more through a unified MCP interface.

🔨

Smithery Registry MCP

The MCP server registry and discovery platform. Browse, search, and install MCP servers from the community. Find the perfect integrations for your AI development workflow.

🔍

MCP Inspector

Official debugging and testing tool for MCP servers. Inspect server capabilities, test tool calls, validate responses, and debug protocol communication in real-time.

← Back to All MCP Servers