tolgee-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@tolgee-mcplist all translation projects"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
tolgee-mcp
An MCP server that wraps the Tolgee localization platform API, enabling LLMs to manage translation projects, keys, translations, languages, and related workflows.
Quick Start
The only prerequisite is uv.
Claude Desktop
Add to your config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):
{
"mcpServers": {
"tolgee": {
"command": "uvx",
"args": ["tolgee-mcp"],
"env": {
"TOLGEE_API_KEY": "your-api-key"
}
}
}
}OpenCode
Add to your opencode.json:
{
"mcp": {
"tolgee": {
"type": "local",
"command": ["uvx", "tolgee-mcp"],
"enabled": true,
"environment": {
"TOLGEE_API_KEY": "your-api-key"
}
}
}
}Other MCP Clients
Any MCP client that supports STDIO servers can use the same pattern:
TOLGEE_API_KEY=your-api-key uvx tolgee-mcpSelf-hosted Tolgee
If you're running your own Tolgee instance, add the TOLGEE_API_URL environment variable:
{
"mcpServers": {
"tolgee": {
"command": "uvx",
"args": ["tolgee-mcp"],
"env": {
"TOLGEE_API_KEY": "your-api-key",
"TOLGEE_API_URL": "https://tolgee.your-domain.com"
}
}
}
}Configuration
Variable | Required | Default | Description |
| Yes | — | Your Tolgee API key |
| No |
| Base URL of your Tolgee instance |
Tools
Projects
Tool | Description |
| List all projects accessible to the authenticated user |
| Get details of a specific project |
| Create a new project |
| Update a project's settings |
| Delete a project (irreversible) |
Languages
Tool | Description |
| List all languages in a project |
| Add a new language to a project |
| Update a language's properties |
| Delete a language and all its translations |
Keys
Tool | Description |
| List localization keys with pagination |
| Search keys by name |
| Create a new key with optional translations and namespace |
| Update a key's name |
| Delete one or more keys |
| Batch import keys with translations |
Translations
Tool | Description |
| Get translations with language and pagination filters |
| Set translation values for an existing key |
| Create a key if needed and set its translations |
| Set the state of a translation (e.g. reviewed, translated) |
| Get modification history of a translation |
Export / Import
Tool | Description |
| Export translations (JSON, XLIFF, etc.) |
| Single-step import of translations |
Tags & Namespaces
Tool | Description |
| List all tags in a project |
| Add a tag to a key |
| Remove a tag from a key |
| List all used namespaces |
| Rename a namespace |
Development
git clone https://github.com/ytarfa/tolgee-mcp.git
cd tolgee-mcp
uv sync
TOLGEE_API_KEY=your-api-key uv run tolgee-mcpLicense
MIT
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/ytarfa/tolgee-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server