Media
Экспортирует кадры GIF в буфер сырых пикселей для анализа, графических конвейеров и низкоуровневой обработки изображений
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Upload each file first → returns { filePath }
curl -X POST 'https://api.elysiatools.com/upload/gif-to-raw' \
-F 'file=@/path/to/gifFile.ext'
# 2) Call the tool with the returned filePath values
curl -X POST 'https://api.elysiatools.com/ru/api/tools/gif-to-raw' \
-F 'gifFile=/path/to/file.ext' \
-F 'multiFrameHandling=first-frame' \
-F 'pixelFormat=rgb' \
-F 'backgroundColor=white' \
-F 'customBackgroundColor=#ffffff'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/gif-to-raw| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| gifFile | fileнужна загрузка | Да | — |
| multiFrameHandling | select | Нет | — |
| pixelFormat | select | Нет | — |
| backgroundColor | select | Нет | — |
| customBackgroundColor | color | Нет |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-gif-to-raw": {
"name": "gif-to-raw",
"description": "Экспортирует кадры GIF в буфер сырых пикселей для анализа, графических конвейеров и низкоуровневой обработки изображений",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=gif-to-raw",
"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": "gif-to-raw",
"arguments": {
"gifFile": "https://example.com/file.ext",
"multiFrameHandling": "first-frame",
"pixelFormat": "rgb",
"backgroundColor": "white",
"customBackgroundColor": "#ffffff"
}
}
}| — |
Файловый результат
{
"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)"
}Вопросы или проблемы? Свяжитесь с [email protected]