POEditor MCP Server

POEditor MCP Server

Enables comprehensive translation management through POEditor's API with project, language, term, and translation operations. Includes automation scripts for reporting, monitoring, AI-powered suggestions, and multi-format exports.

Category
Visit Server

README

๐ŸŒ POEditor MCP Server

A comprehensive Model Context Protocol (MCP) server for POEditor translation management, featuring advanced automation scripts and workflow optimization tools.

GitHub release (latest by date) Python License: MIT GitHub stars

MCP Protocol POEditor API Claude Desktop VS Code

GitHub issues GitHub pull requests GitHub last commit GitHub repo size

๐Ÿš€ Features

  • ๐Ÿ”Œ Complete MCP Server: Full integration with POEditor API
  • ๐ŸŽ›๏ธ Control Center: Master script to manage all automation tools
  • ๐Ÿ“Š Smart Reporting: Interactive HTML reports with progress tracking
  • ๐Ÿšจ Monitoring System: Automated alerts for translation issues
  • ๐Ÿค– AI Automation: Intelligent translation suggestions and consistency checking
  • ๐Ÿ“ง Notifications: Email and Slack integration for team updates
  • ๐Ÿ“ฆ Mass Export: Multi-format export system for all platforms
  • ๐Ÿ•’ Scheduler: Automated task execution with cron-like functionality

๐ŸŽฏ Why This MCP?

Unlike other MCP servers that require complex Docker setups, POEditor MCP is designed for simplicity:

  • โŒ No Docker required - Pure Python implementation
  • ๐ŸŽฏ Translation-focused - Built specifically for localization workflows
  • ๐Ÿ”ง Minimal setup - Just add your API token and run
  • ๐Ÿš€ Instant execution - python setup.py && python control_center.py
  • ๐Ÿ“Š Visual reports - Beautiful HTML dashboards
  • ๐Ÿค– Built-in AI - Smart translation suggestions

๐Ÿ“Š Project Status

Development Status Maintenance API Coverage Documentation

Feature Status Description
๐Ÿ”Œ MCP Server โœ… Complete Full MCP protocol implementation
๐ŸŽฏ POEditor API โœ… Complete All API endpoints covered
๐Ÿค– Claude Desktop โœ… Supported Ready-to-use configuration
๐Ÿ”ง VS Code โœ… Supported MCP extension compatible
๐Ÿ“Š Automation โœ… Complete 10+ automation scripts
๐Ÿ“– Documentation โœ… Complete Comprehensive guides
๐Ÿงช Testing โœ… Complete Thorough test coverage
๐ŸŒ Internationalization ๐Ÿšง Planned Multi-language support

๐Ÿ“‹ Quick Start

1. Automatic Setup (Recommended)

# Clone the repository
git clone https://github.com/yourusername/poeditor-mcp.git
cd poeditor-mcp

# Run the automatic setup script
python setup.py

# Follow the interactive prompts to configure your POEditor API token

2. Manual Setup

# Install dependencies
pip install -r requirements.txt

# Copy environment template
cp .env.template .env

# Edit .env with your POEditor API token
nano .env

# Test the connection
python test_connection.py

3. Start Using

# Show all available commands
python control_center.py help

# Run daily monitoring
python control_center.py monitor

# Generate progress report
python control_center.py daily_report

# Start automated scheduling
python control_center.py schedule start

๏ฟฝ MCP Client Configuration

Once installed, configure your MCP client to use the POEditor server:

๐ŸŽฏ Claude Desktop

Add this configuration to your Claude Desktop config file:

macOS/Linux: ~/.claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "poeditor": {
      "command": "python",
      "args": ["-m", "mcp_poeditor"],
      "cwd": "/path/to/your/poeditor-mcp",
      "env": {
        "POEDITOR_API_TOKEN": "your_poeditor_token_here"
      }
    }
  }
}

๐Ÿ”ง Visual Studio Code

Add this configuration to your VS Code settings:

File: .vscode/settings.json (workspace) or user settings

{
  "mcp.servers": {
    "poeditor": {
      "command": "python",
      "args": ["-m", "mcp_poeditor"],
      "cwd": "/path/to/your/poeditor-mcp",
      "env": {
        "POEDITOR_API_TOKEN": "your_poeditor_token_here"
      }
    }
  }
}

๐Ÿ“ Configuration Notes

  • Replace /path/to/your/poeditor-mcp with the actual path to your installation
  • Replace your_poeditor_token_here with your actual POEditor API token
  • Restart your MCP client after configuration
  • Use the provided example files: claude_desktop_config_example.json and vscode_settings_example.json

๏ฟฝ๐Ÿ› ๏ธ Available Tools

The MCP server provides comprehensive POEditor management through these tool categories:

๐Ÿ“‹ Project Management

  • list_projects - List all projects
  • get_project - Get project details
  • create_project - Create new project

๐ŸŒ Language Management

  • list_languages - List project languages
  • add_language - Add language to project
  • remove_language - Remove language from project

๐Ÿ” Term Management

  • list_terms - List project terms
  • search_terms - Search terms by key/value
  • add_terms - Add new terms
  • delete_terms - Remove terms

โœ๏ธ Translation Management

  • list_translations - Get language translations
  • add_translation - Add new translation
  • update_translation - Update existing translation
  • export_translations - Export in multiple formats

๐Ÿ“Š Statistics & Analytics

  • get_project_stats - Project statistics
  • get_translation_progress - Progress by language
  • compare_languages - Language comparison analysis

๐ŸŽ›๏ธ Automation Scripts

The project includes a powerful suite of automation scripts accessible through the control center:

python control_center.py <command>

๐Ÿ“Š Reporting & Analytics

  • daily_report - Generate comprehensive HTML progress reports
  • status - Check system health and configuration

๐Ÿšจ Monitoring & Alerts

  • monitor - Scan for translation issues and quality problems
  • test - Run system diagnostics

๐Ÿค– Automation

  • automate - AI-powered translation suggestions and consistency checks
  • schedule - Automated task scheduling and execution

๐Ÿ“ˆ Optimization

  • optimize - Workflow analysis with actionable recommendations
  • sync - Synchronize translations between similar projects

๐Ÿ“ฆ Export & Integration

  • export - Mass export in multiple formats (JSON, Android XML, iOS Strings, etc.)
  • notify - Send team notifications via email/Slack

๐Ÿ”ง Management

  • setup - Interactive environment configuration
  • demo - Complete system demonstration

๐Ÿ“ Project Structure

poeditor-mcp/
โ”œโ”€โ”€ ๐Ÿ“„ README.md                     # This file
โ”œโ”€โ”€ ๐Ÿ“„ requirements.txt              # Python dependencies
โ”œโ”€โ”€ ๐Ÿ“„ .env.template                 # Environment template
โ”œโ”€โ”€ ๐Ÿ“„ setup.py                      # Automatic setup script
โ”œโ”€โ”€ ๐Ÿ“„ test_connection.py            # Connection test utility
โ”œโ”€โ”€ ๐Ÿ“„ claude_desktop_config_example.json # Claude Desktop config example
โ”œโ”€โ”€ ๐Ÿ“„ vscode_settings_example.json # VS Code config example
โ”œโ”€โ”€ ๐Ÿ“„ CONFIG_README.md             # Configuration guide
โ”‚
โ”œโ”€โ”€ ๐Ÿ“ mcp_poeditor/                # Core MCP package
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ __init__.py
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ __main__.py              # Entry point
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ server.py                # MCP server implementation
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ poeditor_client.py       # POEditor API client
โ”‚   โ”‚
โ”‚   โ”œโ”€โ”€ ๐Ÿ“ tools/                   # MCP tools
โ”‚   โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ projects.py          # Project management
โ”‚   โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ languages.py         # Language management
โ”‚   โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ terms.py             # Term management
โ”‚   โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ translations.py      # Translation management
โ”‚   โ”‚   โ””โ”€โ”€ ๐Ÿ“„ stats.py             # Statistics & analytics
โ”‚   โ”‚
โ”‚   โ””โ”€โ”€ ๐Ÿ“ utils/                   # Utilities
โ”‚       โ”œโ”€โ”€ ๐Ÿ“„ config.py            # Configuration management
โ”‚       โ””โ”€โ”€ ๐Ÿ“„ helpers.py           # Helper functions
โ”‚
โ”œโ”€โ”€ ๐Ÿ“ scripts/                     # ๐ŸŽ›๏ธ AUTOMATION SUITE
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ README.md                # Scripts documentation
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ control_center.py        # ๐ŸŽ›๏ธ Master control script
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ daily_report.py          # ๐Ÿ“Š Daily progress reports
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ translation_monitor.py   # ๐Ÿšจ Quality monitoring
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ workflow_optimizer.py    # ๐Ÿ“ˆ Workflow optimization
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ project_sync.py          # ๐Ÿ”„ Project synchronization
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ notification_manager.py  # ๐Ÿ“ง Team notifications
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ translation_automator.py # ๐Ÿค– AI automation
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ mass_exporter.py         # ๐Ÿ“ฆ Multi-format export
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ scheduler.py             # ๐Ÿ•’ Task scheduling
โ”‚   โ””โ”€โ”€ ๐Ÿ“„ demo_workflow.py         # ๐ŸŽฏ Complete demo
โ”‚
โ”œโ”€โ”€ ๐Ÿ“ examples/                    # Usage examples
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ basic_usage.py          # Basic MCP usage
โ”‚   โ”œโ”€โ”€ ๐Ÿ“„ automation_examples.py  # Automation examples
โ”‚   โ””โ”€โ”€ ๐Ÿ“„ integration_guide.md    # Integration guide
โ”‚
โ””โ”€โ”€ ๐Ÿ“ docs/                       # Documentation
    โ”œโ”€โ”€ ๐Ÿ“„ INSTALLATION.md         # Detailed installation
    โ”œโ”€โ”€ ๐Ÿ“„ CONFIGURATION.md        # Configuration guide
    โ”œโ”€โ”€ ๐Ÿ“„ API_REFERENCE.md        # API documentation
    โ””โ”€โ”€ ๐Ÿ“„ CONTRIBUTING.md         # Contribution guidelines

๐Ÿ”ง Configuration

Environment Variables

Create a .env file in the root directory:

# POEditor API Configuration
POEDITOR_API_TOKEN=your_api_token_here
POEDITOR_API_URL=https://api.poeditor.com/v2/

# MCP Server Configuration
MCP_SERVER_NAME=poeditor-mcp
MCP_SERVER_VERSION=1.0.0

# Notification Settings (Optional)
SMTP_SERVER=smtp.gmail.com
SMTP_PORT=587
SMTP_USERNAME=your_email@company.com
SMTP_PASSWORD=your_app_password

SLACK_WEBHOOK_URL=https://hooks.slack.com/services/...

# Automation Settings
DEFAULT_EXPORT_FORMAT=json
MAX_RETRIES=3
REQUEST_TIMEOUT=30
LOG_LEVEL=INFO

Scheduler Configuration

Customize automation schedules in scripts/scheduler_config.json:

{
  "schedules": {
    "daily_report": {
      "time": "08:00",
      "enabled": true,
      "weekdays_only": true,
      "description": "Generate daily progress report"
    },
    "monitoring": {
      "time": "09:00",
      "enabled": true,
      "weekdays_only": true,
      "description": "Run translation quality monitoring"
    },
    "weekly_optimization": {
      "day": "monday",
      "time": "08:30",
      "enabled": true,
      "description": "Weekly workflow optimization analysis"
    }
  }
}

๐Ÿš€ Usage Examples

Basic Translation Management

from mcp_poeditor.server import call_tool

# List all projects
projects = await call_tool("list_projects", {})

# Get project languages
languages = await call_tool("list_languages", {"project_id": "123456"})

# Search for specific terms
results = await call_tool("search_terms", {
    "project_id": "123456",
    "search_query": "login"
})

# Export translations
export_url = await call_tool("export_translations", {
    "project_id": "123456",
    "language_code": "es",
    "file_format": "json"
})

Automation Workflow

# Morning routine
python control_center.py monitor        # Check for issues
python control_center.py daily_report   # Generate progress report

# Development workflow  
python control_center.py automate       # Get AI suggestions
python control_center.py export         # Export for developers

# Weekly optimization
python control_center.py optimize       # Analyze workflow efficiency
python control_center.py sync          # Sync related projects

Integration with CI/CD

# GitHub Actions example
name: Translation Export
on:
  schedule:
    - cron: '0 8 * * *'  # Daily at 8 AM
  
jobs:
  export:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v3
      - name: Setup Python
        uses: actions/setup-python@v4
        with:
          python-version: '3.9'
      - name: Install dependencies
        run: pip install -r requirements.txt
      - name: Export translations
        env:
          POEDITOR_API_TOKEN: ${{ secrets.POEDITOR_API_TOKEN }}
        run: python control_center.py export

๐Ÿ”„ Automated Workflows

Daily Automation

  • ๐ŸŒ… Morning: Quality monitoring and progress reports
  • ๐Ÿ•™ Midday: AI-powered translation suggestions
  • ๐ŸŒ† Evening: Export updates for development teams

Weekly Optimization

  • ๐Ÿ“Š Monday: Workflow analysis and optimization recommendations
  • ๐Ÿ”„ Wednesday: Project synchronization and consistency checks
  • ๐Ÿ“ฆ Friday: Complete backup and multi-format export

Real-time Monitoring

  • ๐Ÿšจ Quality alerts: Fuzzy translations, consistency issues
  • ๐Ÿ“ˆ Progress tracking: Language completion milestones
  • ๐Ÿ‘ฅ Team notifications: Slack/email updates for important events

๐ŸŽฏ Supported Export Formats

Perfect for any development workflow:

  • ๐Ÿ“ฑ Mobile: Android XML, iOS Strings, React Native JSON
  • ๐ŸŒ Web: JSON, CSV for React/Vue/Angular applications
  • ๐Ÿ–ฅ๏ธ Backend: Gettext PO, Java Properties, YAML
  • ๐Ÿ“Š Analysis: Excel XLSX, CSV for progress tracking
  • ๐Ÿ”„ Integration: XLIFF, TMX for CAT tools

๐Ÿ“š Documentation

๐Ÿ†˜ Troubleshooting

Common Issues

Connection Failed

# Test your POEditor API token
python test_connection.py

# Check configuration
python control_center.py status

Missing Dependencies

# Reinstall requirements
pip install -r requirements.txt

# Run system diagnostics
python control_center.py test

Permission Errors

# Fix file permissions
chmod +x setup.py
chmod +x control_center.py

Getting Help

  1. ๐Ÿ” Check logs: ./logs/ directory contains detailed execution logs
  2. ๐Ÿงช Run diagnostics: python control_center.py test
  3. ๐Ÿ“Š System status: python control_center.py status
  4. ๐Ÿ› Report issues: Create a GitHub issue with log details

๐Ÿค Contributing

We welcome contributions! Please see our Contributing Guide for details on:

  • ๐Ÿ› Reporting bugs
  • ๐Ÿ’ก Suggesting features
  • ๐Ÿ”ง Submitting pull requests
  • ๐Ÿ“– Improving documentation

๐Ÿ“„ License

This project is licensed under the MIT License - see the LICENSE file for details.

๐ŸŒŸ Acknowledgments

  • Model Context Protocol for the excellent MCP framework
  • POEditor for their comprehensive translation management API
  • The open-source community for inspiration and best practices

โญ If this project helps you, please consider giving it a star!

๐Ÿš€ Start automating your translation workflow today!

Recommended Servers

playwright-mcp

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.

Official
Featured
TypeScript
Magic Component Platform (MCP)

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.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

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.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

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.

Official
Featured
Python
graphlit-mcp-server

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.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

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.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured