analyze_translation_context
Analyze translation context to provide suggestions for a specific key and target locale, ensuring accurate and context-aware translations within the Translation MCP Server.
Instructions
Analyze translation context and provide suggestions
Input Schema
Name | Required | Description | Default |
---|---|---|---|
key | Yes | Translation key to analyze | |
target_locale | Yes | Target locale |
Input Schema (JSON Schema)
{
"properties": {
"key": {
"description": "Translation key to analyze",
"type": "string"
},
"target_locale": {
"description": "Target locale",
"type": "string"
}
},
"required": [
"key",
"target_locale"
],
"type": "object"
}