Generator
Generate league standings table with points, goals, and statistics
Call this tool from your code in three languages.
curl -X POST 'https://api.elysiatools.com/en/api/tools/league-table-generator' \
-H 'Content-Type: application/json' \
-d '{"teamData":"Manchester City vs Liverpool:2-1\nArsenal vs Chelsea:1-1\nManchester United vs Tottenham:3-2\nNewcastle vs Aston Villa:2-0\nBrighton vs West Ham:1-2\nLiverpool vs Manchester City:1-2\nChelsea vs Arsenal:0-0","pointsForWin":3,"pointsForDraw":1,"pointsForLoss":0}'Send a POST request with your inputs as JSON. File parameters require a separate upload first.
POST https://api.elysiatools.com/en/api/tools/league-table-generator| Name | Type | Required | Description |
|---|---|---|---|
| teamData | textarea | Yes | — |
| pointsForWin | number | No | — |
| pointsForDraw | number | No | — |
| pointsForLoss | number | No | — |
Text result
{
"result": "Processed text content",
"error": "Error message (optional)",
"message": "Notification message (optional)",
"metadata": {
"key": "value"
}
}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-league-table-generator": {
"name": "league-table-generator",
"description": "Generate league standings table with points, goals, and statistics",
"baseUrl": "https://api.elysiatools.com/mcp/sse?toolId=league-table-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": "league-table-generator",
"arguments": {
"teamData": "Manchester City vs Liverpool:2-1\nArsenal vs Chelsea:1-1\nManchester United vs Tottenham:3-2\nNewcastle vs Aston Villa:2-0\nBrighton vs West Ham:1-2\nLiverpool vs Manchester City:1-2\nChelsea vs Arsenal:0-0",
"pointsForWin": 3,
"pointsForDraw": 1,
"pointsForLoss": 0
}
}
}Questions or issues? Contact [email protected]