AI Tools
Generate comprehensive behind-the-scenes stories for products, services, and innovations. Discover the fascinating journeys, technical architectures, business models, and human stories behind everyday things.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-behind-story-generator' \
-H 'Content-Type: application/json' \
-d '{"productName":"Enter the product, service, or technology name you want to explore (e.g., WeChat, iPhone, ChatGPT, website, app, etc.)","storyType":"comprehensive","focusArea":"development","detailLevel":"detailed","timeframe":"complete","includeTechnical":true,"includeBusiness":true,"includeHuman":true,"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-behind-story-generator| Name | Type | Required | Description |
|---|---|---|---|
| productName | text | Yes | Enter the name of the product, service, technology, or innovation project whose behind-the-scenes story you want to know |
| storyType | select | No | Select the main type and narrative angle of the story |
| focusArea | select | No | Select the core focus area of the story |
| detailLevel | select | No | Select the detail level and analytical depth of the story |
| timeframe | select |
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-behind-story-generator": {
"name": "ai-behind-story-generator",
"description": "Generate comprehensive behind-the-scenes stories for products, services, and innovations. Discover the fascinating journeys, technical architectures, business models, and human stories behind everyday things.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-behind-story-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-behind-story-generator",
"arguments": {
"productName": "Enter the product, service, or technology name you want to explore (e.g., WeChat, iPhone, ChatGPT, website, app, etc.)",
"storyType": "comprehensive",
"focusArea": "development",
"detailLevel": "detailed",
"timeframe": "complete",
"includeTechnical": true,
"includeBusiness": true,
"includeHuman": true,
"language": "zh"
}
}
}| Select the time range and narrative focus of the story |
| includeTechnical | checkbox | No | Whether to include detailed technical architecture and implementation analysis |
| includeBusiness | checkbox | No | Whether to include business model and market strategy analysis |
| includeHuman | checkbox | No | Whether to include team stories and human emotional content |
| language | select | No | Select story output language |
Stream result
data: {"chunk": "data: processed content 1", "type": "stream"}
data: {"chunk": "data: processed content 2", "type": "stream"}
data: {"type": "done"}Questions or issues? Contact [email protected]