trigger_sync
Manually initiate a data synchronization process by specifying the sync ID to execute data transfer operations between systems.
Instructions
Manually trigger a sync to run.
Args: id: The sync ID to trigger
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/polytomic_mcp/server.py:388-396 (handler)The trigger_sync MCP tool handler. It uses polytomic_request to POST to /syncs/{id}/trigger.
@mcp.tool() async def trigger_sync(id: str) -> str: """Manually trigger a sync to run. Args: id: The sync ID to trigger """ result = await polytomic_request(f"/syncs/{id}/trigger", method="POST") return json.dumps(result, indent=2)