listLanguages
Retrieve a list of supported languages for a specific project in Weblate MCP Server, using the project's unique slug to identify it.
Instructions
List languages available in 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"
}