equalang mcp for VS Code
io.github.equalang-ai/equalang-mcp
Translate documents, subtitles, pictures, audio and video with layout kept; transcribe recordings.
client:VS Code
transport:stdio
runtime:npm
Install equalang mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "equalang-api-key",
"description": "EQUALANG_API_KEY",
"password": true
}
],
"servers": {
"equalang-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@equalang/mcp"
],
"env": {
"EQUALANG_API_KEY": "${input:equalang-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs