Utilities
Найти и заменить текст в файлах с поддержкой регулярных выражений, нескольких шаблонов и созданием резервных копий
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/text-file-replacer' \
-H 'Content-Type: application/json' \
-d '{"filename":"filePath.ext","contentType":"application/octet-stream","size":12345}'
# 2) PUT the file bytes directly to the presigned uploadUrl
curl -X PUT '<presigned uploadUrl>' \
--data-binary @/path/to/file.ext
# 3) Call the tool, passing the returned storageKey for each file field
curl -X POST 'https://api.elysiatools.com/ru/api/tools/text-file-replacer' \
-F 'filePath=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'findText=Text or pattern to find' \
-F 'replaceText=Text to replace with' \
-F 'replaceType=all' \
-F 'caseSensitive=false' \
-F 'wholeWord=false' \
-F 'regex=false' \
-F 'createBackup=true' \
-F 'previewOnly=false' \
-F 'outputFormat=detailed'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/text-file-replacer| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| filePath | fileнужна загрузка | Да | — |
| findText | text | Да | — |
| replaceText | text | Да | — |
| replaceType | select | Нет | — |
| caseSensitive | checkbox | Нет | — |
| wholeWord | checkbox | Нет | — |
| regex | checkbox | Нет | — |
| createBackup | checkbox | Нет | — |
| previewOnly | checkbox | Нет | — |
| outputFormat | select | Нет | — |
Файловый результат
{
"filePath": "/public/processing/randomid.ext",
"fileName": "output.ext",
"contentType": "application/octet-stream",
"size": 1024,
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-text-file-replacer": {
"name": "text-file-replacer",
"description": "Найти и заменить текст в файлах с поддержкой регулярных выражений, нескольких шаблонов и созданием резервных копий",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=text-file-replacer",
"command": "",
"args": [],
"env": {},
"isActive": true,
"type": "sse"
}
}
}После подключения к SSE-endpoint выведите список доступных инструментов:
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}Вызовите инструмент по его id; аргументы формируются из его параметров:
{
"jsonrpc": "2.0",
"id": 2,
"method": "tools/call",
"params": {
"name": "text-file-replacer",
"arguments": {
"filePath": "https://example.com/file.ext",
"findText": "Text or pattern to find",
"replaceText": "Text to replace with",
"replaceType": "all",
"caseSensitive": false,
"wholeWord": false,
"regex": false,
"createBackup": true,
"previewOnly": false,
"outputFormat": "detailed"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]