set_workspace_config
Configures workspace-specific translation settings by updating the partial TranslationConfig. Supports both workspace and project scope, enabling precise control over translation configurations in the Translation MCP Server.
Instructions
Update workspace-specific translation settings
Input Schema
Name | Required | Description | Default |
---|---|---|---|
config | Yes | Partial TranslationConfig to update | |
scope | No | Configuration scope, defaults to "workspace" |
Input Schema (JSON Schema)
{
"properties": {
"config": {
"description": "Partial TranslationConfig to update",
"type": "object"
},
"scope": {
"description": "Configuration scope, defaults to \"workspace\"",
"enum": [
"workspace",
"project"
],
"type": "string"
}
},
"required": [
"config"
],
"type": "object"
}