getProjectStatistics
Analyze project data by retrieving statistics such as completion rates and string counts for translation projects managed on the Weblate MCP Server.
Instructions
Get comprehensive statistics for a project including completion rates and string counts
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectSlug | Yes | The slug of the project |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectSlug": {
"description": "The slug of the project",
"type": "string"
}
},
"required": [
"projectSlug"
],
"type": "object"
}