listComponents
Retrieve a list of components within a specified project in Weblate MCP Server. Input the project slug to access and manage translation-related components efficiently.
Instructions
List components 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"
}