delete_sync
Remove a data synchronization task from Polytomic by specifying its ID to stop ongoing data transfers and eliminate pipeline configurations.
Instructions
Delete a sync from Polytomic.
Args: id: The sync ID to delete
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/polytomic_mcp/server.py:365-373 (handler)The implementation of the delete_sync tool, which sends a DELETE request to the /syncs/{id} endpoint to remove a sync from Polytomic.
@mcp.tool() async def delete_sync(id: str) -> str: """Delete a sync from Polytomic. Args: id: The sync ID to delete """ result = await polytomic_request(f"/syncs/{id}", method="DELETE") return json.dumps(result, indent=2)