getChangesByUser
Retrieve recent translation changes made by a specific user in Weblate MCP Server, with options to limit results for focused insights.
Instructions
Get recent changes by a specific user
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Number of changes to return (default: 20) | |
user | Yes | Username to filter by |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"limit": {
"default": 20,
"description": "Number of changes to return (default: 20)",
"type": "number"
},
"user": {
"description": "Username to filter by",
"type": "string"
}
},
"required": [
"user"
],
"type": "object"
}