AI Tools
Generates 34-second viral scripts with hook-suspense-transition-build-twist-final punch.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-short-video-script-generator' \
-H 'Content-Type: application/json' \
-d '{"topic":"e.g., weight loss, dating, exams, side hustles…","language":"zh"}'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-short-video-script-generator| Name | Type | Required | Description |
|---|---|---|---|
| topic | text | Yes | — |
| language | select | 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-short-video-script-generator": {
"name": "ai-short-video-script-generator",
"description": "Generates 34-second viral scripts with hook-suspense-transition-build-twist-final punch.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-short-video-script-generator",
"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-short-video-script-generator",
"arguments": {
"topic": "e.g., weight loss, dating, exams, side hustles…",
"language": "zh"
}
}
}Questions or issues? Contact [email protected]