Model Context Protocol
The Model Context Protocol (MCP) is a standard for connecting Large Language Models (LLMs) to external services. This guide will walk you through how to connect AI tools to Lingo.dev using MCP.
Some of the AI tools that support MCP are:
Connecting these tools to Lingo.dev will allow you to translate apps, websites, and other data using the best LLM models directly in your AI tool.
Setup
Add this command to your AI tool:
npx -y lingo.dev mcp <api-key>
You can find your API key in Lingo.dev app, in your project settings.
This will allow the tool to use translate
tool provided by Lingo.dev. The setup depends on your AI tool and might be different for each tool. Here is setup for some of the tools we use in our team:
Cursor
- Open Cursor and go to Cursor Settings.
- Open MCP tab
- Click
+ Add new MCP server
- Enter the following details:
- Name: Lingo.dev
- Type: command
- Command:
npx -y lingo.dev mcp <api-key>
(use your project API key)
- You will see green status indicator and "translate" tool available in the list
Claude desktop
- Open Claude desktop and go to Settings.
- Open Developer tab
- Click
Edit Config
to see configuration file in file explorer. - Open the file in text editor
- Add the following configuration (use your project API key):
{
"mcpServers": {
"supabase": {
"command": "npx",
"args": ["-y", "lingo.dev", "mcp", "<api-key>"]
}
}
}
- Save the configuration file
- Restart Claude desktop.
- In the chat input, you will see a hammer icon with your MCP server details.
Usage
You are now able to access Lingo.dev via MCP. You can ask AI tool translate any content via our service.