Getting Started
Prerequisites
Section titled “Prerequisites”1. Install Ollama
Section titled “1. Install Ollama”Download from ollama.com and start it:
ollama serve2. Pull a model
Section titled “2. Pull a model”ollama pull translategemma:12b # 8.1 GB — best quality/speed balance# orollama pull translategemma:4b # 3.3 GB — faster, lower quality# orollama pull translategemma:27b # 17 GB — highest qualityYou can skip this step — Polyglot auto-pulls the model on first use.
3. Add to your MCP client
Section titled “3. Add to your MCP client”Claude Code / Claude Desktop — add to claude_desktop_config.json or .mcp.json:
{ "mcpServers": { "polyglot": { "command": "npx", "args": ["-y", "@mcptoolshop/polyglot-mcp"] } }}From source:
git clone https://github.com/mcp-tool-shop-org/polyglot-mcp.gitcd polyglot-mcpnpm install && npm run buildnode dist/index.jsThat’s it. Ask Claude to translate something and it will use the translate tool automatically.
Configuring the default model
Section titled “Configuring the default model”Set POLYGLOT_MODEL to override the default:
POLYGLOT_MODEL=translategemma:27b npx @mcptoolshop/polyglot-mcp