get_bulk_sync_status
Check the current status of a bulk data synchronization operation by providing the sync ID.
Instructions
Get the current status of a bulk sync.
Args: id: The bulk sync ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/polytomic_mcp/server.py:566-574 (handler)The implementation of the get_bulk_sync_status tool, which makes a GET request to the Polytomic API and returns the result as a formatted JSON string.
@mcp.tool() async def get_bulk_sync_status(id: str) -> str: """Get the current status of a bulk sync. Args: id: The bulk sync ID """ result = await polytomic_request(f"/bulk/syncs/{id}/status") return json.dumps(result, indent=2)