Skip to content

Getting Started

Download from ollama.com and start it:

Terminal window
ollama serve
Terminal window
ollama pull translategemma:12b # 8.1 GB — best quality/speed balance
# or
ollama pull translategemma:4b # 3.3 GB — faster, lower quality
# or
ollama pull translategemma:27b # 17 GB — highest quality

You can skip this step — Polyglot auto-pulls the model on first use.

Claude Code / Claude Desktop — add to claude_desktop_config.json or .mcp.json:

{
"mcpServers": {
"polyglot": {
"command": "npx",
"args": ["-y", "@mcptoolshop/polyglot-mcp"]
}
}
}

From source:

Terminal window
git clone https://github.com/mcp-tool-shop-org/polyglot-mcp.git
cd polyglot-mcp
npm install && npm run build
node dist/index.js

That’s it. Ask Claude to translate something and it will use the translate tool automatically.

Set POLYGLOT_MODEL to override the default:

Terminal window
POLYGLOT_MODEL=translategemma:27b npx @mcptoolshop/polyglot-mcp