getProjectChanges
Track and retrieve recent changes for a specific translation project using the project slug on the Weblate MCP Server.
Instructions
Get recent changes for a specific project
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"
}