waafir-translate reference
The waafir-translate server exposes Waafir's text translation to a
connected AI client. It is the short-text, synchronous counterpart of the
in-product AI Translation feature: where the
product feature translates whole documents and preserves their layout, this
tool translates a snippet of text and returns the result inline.
This server is positioned as experimental — the surface may change.
Connection: https://app.waafir.io/api/mcp/waafir-translate — see
Setup. Requires a read-scope (or higher)
PAT.
translate_text
Translate a short text into a target language. The call is synchronous and text-in / text-out. Omit the source language to have it detected automatically; the detected (or supplied) source is returned so you can confirm it.
Inputs
| Field | Type | Required | Description |
|---|---|---|---|
text | string | yes | The text to translate, 1–10,000 UTF-8 bytes. |
target_lang | string | yes | Target language code, e.g. fr, ar, es. |
source_lang | string | no | Source language code. Omit to auto-detect. |
Output
{ translated_text, detected_source_lang }translated_text— the text rendered in the target language.detected_source_lang— the source language that was used: the one you supplied, or the one auto-detected whensource_langwas omitted.
Size limit
Because the tool is the synchronous path, text is limited to 10,000 UTF-8
bytes per call. Input over that limit returns a clear error rather than being
silently truncated. For larger content — whole documents — use the
document translation feature, which is built for
files and preserves their layout.
waafir-redact reference
Reference for the waafir-redact MCP server and its redact_text tool — redact sensitive content from a block of text and get back the redacted text plus the identified entities.
waafir-dataroom reference
Reference for the waafir-dataroom MCP server — all nineteen tools for reading and managing data rooms over a Personal Access Token, grouped into read, folder, file, and permission tools, with their inputs, outputs, and required scopes.