Text Processing
Translate full Markdown articles with AI while preserving headings, tables, links, images, and code blocks for direct publication
Call this tool from your code in three languages.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/ai-markdown-article-translator' \
-F 'file=@/path/to/markdownFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-markdown-article-translator' \
-F 'markdownInput=# 发布说明
欢迎使用新版本。
| 项目 | 状态 |
| --- | --- |
| API | 已上线 |
请运行 `npm run build`。
[查看 API 章节](#api-reference)' \
-F 'markdownFile=' \
-F 'sourceLanguage=auto' \
-F 'targetLanguage=english' \
-F 'glossary=已上线 => live
发布说明 => Release Notes' \
-F 'preserveAnchorSlugs=true'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/ai-markdown-article-translator| Name | Type | Required | Description |
|---|---|---|---|
| markdownInput | textarea | No | — |
| markdownFile | fileupload required | No | — |
| sourceLanguage | select | No | — |
| targetLanguage | select | No | — |
| glossary | textarea | No | — |
| preserveAnchorSlugs | checkbox | No | — |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Add this tool to your Model Context Protocol server so AI agents can list and call it.
Add this block to your MCP client configuration:
{
"mcpServers": {
"elysiatools-ai-markdown-article-translator": {
"name": "ai-markdown-article-translator",
"description": "Translate full Markdown articles with AI while preserving headings, tables, links, images, and code blocks for direct publication",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-markdown-article-translator",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}After connecting to the SSE endpoint, list the exposed tools:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Invoke the tool by its id, passing arguments built from its parameters:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "ai-markdown-article-translator",
"arguments": {
"markdownInput": "# 发布说明\n\n欢迎使用新版本。\n\n| 项目 | 状态 |\n| --- | --- |\n| API | 已上线 |\n\n请运行 `npm run build`。\n\n[查看 API 章节](#api-reference)",
"markdownFile": "",
"sourceLanguage": "auto",
"targetLanguage": "english",
"glossary": "已上线 => live\n发布说明 => Release Notes",
"preserveAnchorSlugs": true
}
}
}Questions or issues? Contact [email protected]