Translation Mcp Server

by awsxuhi

240 downloads
Not rated
GitHub

Description

## Steps to create the translation_mcp_server and enable it in MCP Host: ```shell mkdir translation_mcp_server cd translation_mcp_server uv venv echo 'source .venv/bin/activate' > .envrc direnv allow # check if direnv works cd .. cd - which python && python --version echo…

About

## Steps to create the translation_mcp_server and enable it in MCP Host: ```shell mkdir translation_mcp_server cd translation_mcp_server uv venv echo 'source .venv/bin/activate' > .envrc direnv allow # check if direnv works cd .. cd - which python && python --version echo $VIRTUAL_ENV # use `uv init` to create .toml…

Details

Author
awsxuhi
Downloads
240
Categories
Other

Setting up with Highlight

This MCP is not yet compatible with Highlight’s one-click setup. However, you can still use it with Highlight by following these steps:

  1. Download and install Highlight from highlightai.com/download
  2. Navigate to the plugins tab and select "Add Custom Plugin"
  3. Configure the plugin with the settings below
    Plugin Name Translation Mcp Server
    Command (node, npx, python, etc.)

    Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.

  4. Enable "Start Automatically" if you want the plugin to start when Highlight launches

From the repository

The server is created by following the setup steps: create a directory, initialize a Python virtual environment with uv venv, enable direnv, use uv init to create .toml files, add dependencies mcp[cli] and httpx, then edit main.py and run it.

Claude Desktop / Cursor

Paste into your MCP client config file to install this server.

{
    "mcpServers": {
        "translation mcp server": {
            "translation-mcp-server": {
                "command": "uv",
                "args": [
                    "venv"
                ]
            }
        }
    }
}

McpServers

{
    "translation-mcp-server": {
        "command": "uv",
        "args": [
            "venv"
        ]
    }
}

Steps to create the translation_mcp_server and enable it in MCP Host:

mkdir translation_mcp_server
cd translation_mcp_server
uv venv
echo 'source .venv/bin/activate' > .envrc
direnv allow

check if direnv works

cd .. cd - which python && python --version echo $VIRTUAL_ENV

use uv init to create .toml files which is required to install deps by running uv add

uv init uv add "mcp[cli]" httpx

run below commands to check if there are modules missed for running the server

uv run main.py

edit main.py, and then add

No reviews yet — be the first

Sign in to leave a review

Use Google, GitHub, or an email account so ratings stay tied to real people.

Email sign in

No reviews posted yet.