AI Tools
Decisions under Taleb’s antifragile rules: downside-first, barbell, via negativa, optionality, skin-in-the-game.
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-antifragile-decision' \
-H 'Content-Type: application/json' \
-d '{"scenario":"Describe the current decision context or problem","goal":"Intended outcome or benefit","constraints":"Budget, time, regulations, team, market conditions, etc.","alternatives":"List alternatives or leave blank for exploration","riskTolerance":"moderate","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-antifragile-decision| Name | Type | Required | Description |
|---|---|---|---|
| scenario | textarea | Yes | — |
| goal | textarea | No | — |
| constraints | textarea | No | — |
| alternatives | textarea | No | — |
| riskTolerance | select | No | — |
| language |
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-antifragile-decision": {
"name": "ai-antifragile-decision",
"description": "Decisions under Taleb’s antifragile rules: downside-first, barbell, via negativa, optionality, skin-in-the-game.",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-antifragile-decision",
"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-antifragile-decision",
"arguments": {
"scenario": "Describe the current decision context or problem",
"goal": "Intended outcome or benefit",
"constraints": "Budget, time, regulations, team, market conditions, etc.",
"alternatives": "List alternatives or leave blank for exploration",
"riskTolerance": "moderate",
"language": "zh"
}
}
}| select |
| No |
| — |
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]