just-translated

just-translated

3.5

Just Translated MCP Server offers translation services across more than 90 languages using a hybrid model of statistical and neural translation algorithms.

Just Translated is designed to meet your translation needs efficiently and accurately. It offers extensive language support, translating text between over 90 languages, including English, Spanish, Chinese, Arabic, and French. The server uses a hybrid translation model that integrates both statistical and neural translation models, ensuring precise and contextually relevant translations. It features automatic language detection, high performance with low latency, and a service level of 100%. Just Translated provides a tool called getTranslate for high-quality translation of both HTML and plain text.

Features

  • Free Usage: Translate up to 100,000 characters per month at no cost.
  • Flexible Pricing: Continue translating at $0.45 per 1 million characters after exceeding the free limit.
  • Continuous Improvement: Algorithms are continuously updated with new texts for the latest advancements.

MCP Tools

  • getTranslate: Provides high-quality translation for both HTML and plain text.

Usage with Different Platforms

mcp

python
# Example usage of getTranslate tool
from just_translated import get_translate

# Translate text from English to French
def translate_text(text):
    result = get_translate(lang='en-fr', text=text)
    return result

translated_text = translate_text('Hello, world!')
print(translated_text)