translator-mcp
Enables AI to translate database content from English to German directly in a live database with read-only and column-whitelisted security.
README
Translation MCP Server
A secure MCP server that allows AI to translate database content from English to German directly in your live database.
š Full Documentation - Complete guide with architecture, security details, and deployment instructions
Security Features
- Read-only by default: Only SELECT and UPDATE permissions on specific columns
- No DELETE permissions: Cannot remove any data
- Column whitelisting: Only specified German columns can be updated
- Audit logging: All translations are logged with timestamps and session IDs
- Connection pooling: Limited concurrent connections to prevent overload
- Input validation: All inputs are validated with Zod schemas
- Transaction support: Bulk updates use transactions for data integrity
Setup
1. Database Setup
Run the SQL script to create a restricted user:
mysql -u root -p < database-setup.sql
2. Install Dependencies
npm install
3. Configure Environment
Copy .env.example to .env and update with your database credentials:
cp .env.example .env
4. Build the Server
npm run build
5. Configure MCP Client
Add to your MCP client settings (e.g., Claude Desktop: ~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"translation-server": {
"command": "node",
"args": ["/absolute/path/to/translatemcp/dist/index.js"],
"env": {
"DB_HOST": "your-server.com",
"DB_USER": "mcp_translator",
"DB_PASSWORD": "secure_password",
"DB_NAME": "your_database",
"ALLOWED_TABLES": "{...your config...}"
}
}
}
}
Usage with AI
Once configured, AI can use these tools:
- get_translation_items: Fetch items needing translation
- update_translation: Update a single item's German translations
- bulk_update_translations: Update multiple items in one transaction
- get_translation_progress: Check translation statistics
Example AI conversation:
You: "Please translate the first 10 products from English to German"
AI: [Uses get_translation_items to fetch products]
AI: [Translates each item]
AI: [Uses bulk_update_translations to save all translations]
Documentation
- š Complete Documentation - In-depth technical guide
- šļø Architecture Overview - System design and components
- š Security Model - Security layers and protections
- š Deployment Guide - Production setup instructions
- š§ Troubleshooting - Common issues and solutions
Monitoring
Check translation audit logs:
SELECT * FROM translation_audit
WHERE translated_at > DATE_SUB(NOW(), INTERVAL 1 DAY)
ORDER BY translated_at DESC;
Check translation progress:
SELECT table_name, COUNT(DISTINCT record_id) as records_translated
FROM translation_audit
GROUP BY table_name;
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.
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.
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.
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.