AI Tools
Generate personalized weekly exercise plans specifically designed to enhance telomere health and promote cellular longevity
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/ai-telomere-exercise-generator' \
-H 'Content-Type: application/json' \
-d '{"age":0,"gender":"male","currentFitnessLevel":"beginner","exerciseExperience":"beginner","healthConditions":"Describe your health conditions...","exerciseGoals":"Describe your main exercise goals...","availableTime":"30-45","preferredWorkoutTime":"morning","workoutDays":"4","equipmentAvailable":"bodyweight","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-telomere-exercise-generator| Name | Type | Required | Description |
|---|---|---|---|
| age | number | Yes | Your current age for determining appropriate exercise intensity |
| gender | select | Yes | Gender information for personalized exercise planning |
| currentFitnessLevel | select | Yes | Your current physical fitness condition |
| exerciseExperience | select | Yes | Your exercise experience and background |
| healthConditions | textarea | No |
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-telomere-exercise-generator": {
"name": "ai-telomere-exercise-generator",
"description": "Generate personalized weekly exercise plans specifically designed to enhance telomere health and promote cellular longevity",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=ai-telomere-exercise-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-telomere-exercise-generator",
"arguments": {
"age": 0,
"gender": "male",
"currentFitnessLevel": "beginner",
"exerciseExperience": "beginner",
"healthConditions": "Describe your health conditions...",
"exerciseGoals": "Describe your main exercise goals...",
"availableTime": "30-45",
"preferredWorkoutTime": "morning",
"workoutDays": "4",
"equipmentAvailable": "bodyweight",
"language": "zh"
}
}
}| Please describe any health issues, injuries, or special considerations |
| exerciseGoals | textarea | No | For example: improve health, weight loss, muscle gain, increase endurance, etc. |
| availableTime | select | Yes | Time you can allocate for exercise daily |
| preferredWorkoutTime | select | Yes | Your preferred workout time period |
| workoutDays | select | Yes | Number of days you plan to exercise weekly |
| equipmentAvailable | select | Yes | Exercise equipment you can use |
| language | 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]