Spaces:
Running
Running
File size: 667 Bytes
7114af0 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 |
"""Handler for deleting Datawrapper charts."""
import json
from datawrapper import get_chart
from mcp.types import TextContent
from ..utils import get_api_token
async def delete_chart(arguments: dict) -> list[TextContent]:
"""Delete a chart permanently."""
api_token = get_api_token()
chart_id = arguments["chart_id"]
# Get chart and delete using Pydantic instance method
chart = get_chart(chart_id, access_token=api_token)
chart.delete(access_token=api_token)
result = {
"chart_id": chart_id,
"message": "Chart deleted successfully!",
}
return [TextContent(type="text", text=json.dumps(result, indent=2))]
|