AI
Анализирует смешанные языки и оценивает токены для OpenAI, Codex, Claude и DeepSeek
Вызовите этот инструмент из своего кода на трёх языках.
# 1) Request a presigned URL → returns { uploadUrl, storageKey }
curl -X POST 'https://api.elysiatools.com/api/upload/presign/ai-token-estimator' \
-H 'Content-Type: application/json' \
-d '{"filename":"textFile.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/ai-token-estimator' \
-F 'inputText=请总结 this API design and list 3 risks.' \
-F 'textFile=uploads/2026/01/01/your-tool-1700000000000-abc123.ext' \
-F 'modelProfile=All Profiles' \
-F 'countMode=raw-text'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/ai-token-estimator| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| inputText | textarea | Нет | — |
| textFile | fileнужна загрузка | Нет | — |
| modelProfile | select | Нет | — |
| countMode | select | Нет | — |
JSON-результат
{
"key": {...},
"metadata": {
"key": "value"
},
"error": "Error message (optional)",
"message": "Notification message (optional)"
}Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-ai-token-estimator": {
"name": "ai-token-estimator",
"description": "Анализирует смешанные языки и оценивает токены для OpenAI, Codex, Claude и DeepSeek",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-token-estimator",
"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": "ai-token-estimator",
"arguments": {
"inputText": "请总结 this API design and list 3 risks.",
"textFile": "https://example.com/file.ext",
"modelProfile": "All Profiles",
"countMode": "raw-text"
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]