bluente_get_supported_languages
List all available language pairs for translation on the Bluente platform to determine which languages can be translated.
Instructions
List all language pairs currently supported by the Bluente translation platform.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/get-supported-languages.tool.js:5-12 (registration)The MCP tool 'bluente_get_supported_languages' is registered here. The handler executes client.getSupportedLanguages().
export function registerGetSupportedLanguagesTool(server, { client }) { server.tool( TOOL_NAME, "List all language pairs currently supported by the Bluente translation platform.", {}, async () => executeTool(TOOL_NAME, async () => client.getSupportedLanguages()) ); }