searchStringInProject
Locate specific text within translation projects by searching source, target, or both in Weblate MCP Server.
Instructions
Search for translations containing specific text in a project
Input Schema
Name | Required | Description | Default |
---|---|---|---|
projectSlug | Yes | The slug of the project to search in | |
searchIn | No | Where to search: source text, target translation, or both | both |
value | Yes | The text to search for |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"projectSlug": {
"description": "The slug of the project to search in",
"type": "string"
},
"searchIn": {
"default": "both",
"description": "Where to search: source text, target translation, or both",
"enum": [
"source",
"target",
"both"
],
"type": "string"
},
"value": {
"description": "The text to search for",
"type": "string"
}
},
"required": [
"projectSlug",
"value"
],
"type": "object"
}