Skip to content

Commit ce0eb6d

Browse files
bdshadowclaude
andauthored
feat: add MCP Server integration to the integrations page (#3473)
<!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit * **New Features** * Added MCP (Model Context Protocol) integration guide with client configuration examples and available tools documentation. * **Documentation** * New integration guide for MCP setup and configuration with AI assistants. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Co-authored-by: Claude Opus 4.6 <noreply@anthropic.com>
1 parent 8f7539b commit ce0eb6d

3 files changed

Lines changed: 55 additions & 0 deletions

File tree

Lines changed: 10 additions & 0 deletions
Loading

webapp/src/views/projects/integrate/guides.tsx

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,9 @@ export const guides = [
8080
icon: getTechnologyImgComponent('jetpackcompose'),
8181
guide: React.lazy(() => import('./guides/AndroidJetpackCompose.mdx')),
8282
},
83+
{
84+
name: 'MCP',
85+
icon: getTechnologyImgComponent('mcp'),
86+
guide: React.lazy(() => import('./guides/Mcp.mdx')),
87+
},
8388
] as Guide[];
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
import { GoToDocsButton } from '../component/GoToDocsButton';
2+
3+
<GoToDocsButton
4+
href="https://tolgee.io/platform/integrations/mcp_server/usage"
5+
style={{ float: 'right' }}
6+
/>
7+
8+
To read full documentation about the Tolgee MCP Server, visit [docs](https://tolgee.io/platform/integrations/mcp_server).
9+
10+
## What is MCP?
11+
12+
The [Model Context Protocol](https://modelcontextprotocol.io/) (MCP) allows AI assistants like Claude, Cursor, or Windsurf to interact with Tolgee directly — managing keys, translations, and more from your AI-powered development environment.
13+
14+
## Configure your MCP client
15+
16+
Add the following to your MCP client configuration (e.g. `claude_desktop_config.json`, `.cursor/mcp.json`, etc.):
17+
18+
```json
19+
{
20+
"mcpServers": {
21+
"tolgee": {
22+
"url": "{{{apiUrl}}}/mcp/developer",
23+
"headers": {
24+
"X-API-Key": "{{{apiKey}}}"
25+
}
26+
}
27+
}
28+
}
29+
```
30+
31+
## Some of the available tools
32+
33+
Once connected, your AI assistant can:
34+
35+
- **List and manage projects** — browse your Tolgee projects
36+
- **Create, update, and delete keys** — manage translation keys
37+
- **Set and update translations** — modify translations across languages
38+
- **Manage languages** — list and configure project languages
39+
- **Work with namespaces and tags** — organize your translations
40+
- **Trigger batch machine translation** — translate keys in bulk

0 commit comments

Comments
 (0)