getTranslationStatistics
Retrieve detailed statistics for a specific translation project, component, and language combination using the Weblate MCP Server. Analyze translation progress and accuracy efficiently.
Instructions
Get statistics for a specific translation (project/component/language combination)
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentSlug | Yes | The slug of the component | |
languageCode | Yes | The language code (e.g., en, es, fr) | |
projectSlug | Yes | The slug of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"componentSlug": {
"description": "The slug of the component",
"type": "string"
},
"languageCode": {
"description": "The language code (e.g., en, es, fr)",
"type": "string"
},
"projectSlug": {
"description": "The slug of the project",
"type": "string"
}
},
"required": [
"projectSlug",
"componentSlug",
"languageCode"
],
"type": "object"
}