Math & Numbers
Вычисляет наблюдаемую частоту и сдвиг для движущихся источника/наблюдателя
Вызовите этот инструмент из своего кода на трёх языках.
curl -X POST 'https://api.elysiatools.com/ru/api/tools/doppler-effect-calculator' \
-H 'Content-Type: application/json' \
-d '{"sourceFreq":700,"mediumPreset":"air","waveSpeed":343,"sourceMotion":"approaching","sourceSpeed":30,"observerMotion":"stationary","observerSpeed":0}'Отправьте POST-запрос с входными данными в JSON. Параметры типа «файл» требуют предварительной загрузки.
POST https://api.elysiatools.com/ru/api/tools/doppler-effect-calculator| Имя | Тип | Обязательный | Описание |
|---|---|---|---|
| sourceFreq | number | Да | — |
| mediumPreset | select | Нет | — |
| waveSpeed | number | Нет | — |
| sourceMotion | select | Нет | — |
| sourceSpeed | number | Нет | — |
| observerMotion |
Добавьте этот инструмент на свой сервер Model Context Protocol, чтобы ИИ-агенты могли перечислять и вызывать его.
Добавьте этот блок в конфигурацию вашего MCP-клиента:
{
"mcpServers": {
"elysiatools-doppler-effect-calculator": {
"name": "doppler-effect-calculator",
"description": "Вычисляет наблюдаемую частоту и сдвиг для движущихся источника/наблюдателя",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=doppler-effect-calculator",
"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": "doppler-effect-calculator",
"arguments": {
"sourceFreq": 700,
"mediumPreset": "air",
"waveSpeed": 343,
"sourceMotion": "approaching",
"sourceSpeed": 30,
"observerMotion": "stationary",
"observerSpeed": 0
}
}
}Вопросы или проблемы? Свяжитесь с [email protected]
| select |
| Нет |
| — |
| observerSpeed | number | Нет | — |
HTML-результат
{
"result": "<div>Processed HTML content</div>",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}