Translation Mcp Server
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
Jump to
—
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:
- Download and install Highlight from highlightai.com/download
- Navigate to the plugins tab and select "Add Custom Plugin"
-
Configure the plugin with the settings below
Plugin Name
Translation Mcp ServerCommand (node, npx, python, etc.)Please refer to the README for specific instructions on how to obtain API keys or other required environment variables.
- 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
Sign in to leave a review
Use Google, GitHub, or an email account so ratings stay tied to real people.
No reviews posted yet.



