get_bulk_sync
Retrieve details and status for a specific bulk data synchronization operation in the Polytomic MCP Server.
Instructions
Get details for a specific 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:445-453 (handler)The `get_bulk_sync` tool handler implementation. It uses the `polytomic_request` helper to fetch bulk sync details.
@mcp.tool() async def get_bulk_sync(id: str) -> str: """Get details for a specific bulk sync. Args: id: The bulk sync ID """ result = await polytomic_request(f"/bulk/syncs/{id}") return json.dumps(result, indent=2)