Design
Generate CSS animation keyframes and properties
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/animation-generator' \
-H 'Content-Type: application/json' \
-d '{"name":"fadeIn","animationType":"fade","duration":2,"timingFunction":"ease","delay":0,"iterationCount":"infinite","direction":"normal","fillMode":"forwards"}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/animation-generator| Name | Type | Required | Description |
|---|---|---|---|
| name | text | Yes | — |
| animationType | select | Yes | — |
| duration | number | Yes | — |
| timingFunction | select | Yes | — |
| delay | number | Yes | — |
| iterationCount |
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-animation-generator": {
"name": "animation-generator",
"description": "Generate CSS animation keyframes and properties",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=animation-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": "animation-generator",
"arguments": {
"name": "fadeIn",
"animationType": "fade",
"duration": 2,
"timingFunction": "ease",
"delay": 0,
"iterationCount": "infinite",
"direction": "normal",
"fillMode": "forwards"
}
}
}Questions or issues? Contact [email protected]
| select |
| Yes |
| — |
| direction | select | Yes | — |
| fillMode | select | Yes | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}