xliff-processor
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| process_xliffD | – |
| process_xliff_with_tagsD | – |
| validate_xliffD | – |
| replace_xliff_targetsD | – |
| process_tmxD | – |
| validate_tmxD | – |
| export_xliff_fileD | – |
| export_tmx_fileD | – |
| get_server_infoD | – |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| prepare_xliff_for_translation | Validate XLIFF content and extract translation-ready units. |
| translate_xliff_with_tags | Extract tag-preserving XLIFF segments and translate them safely. |
| replace_xliff_targets_from_translations | Apply translation JSON back into an original XLIFF payload. |
| inspect_tmx_translation_memory | Validate TMX content and extract reusable translation memory entries. |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| skill_catalog | List the reusable translation workflow skills exposed by this server. |
TDQS
Scored across 9 tools
Each tool targets a distinct action (export, process, validate, replace, get info) with specific file types (XLIFF or TMX). The only potential overlap is process_xliff and process_xliff_with_tags, but the latter explicitly handles tags, making them clearly distinguishable.
All tools follow a consistent verb_noun pattern in snake_case, e.g., export_tmx_file, process_xliff, validate_tmx. The naming is predictable and uniform across the entire set.
With 9 tools covering export, process, validate, replace, and server info for both XLIFF and TMX, the count is well-scoped for a file processing server. No tools feel extraneous or missing.
The tool surface covers the core lifecycle for XLIFF and TMX: export, process, validate, and replace. Minor gaps exist, such as missing import or merge tools, but for a focused XLIFF processor, it is largely complete.