list_bulk_syncs
Retrieve all bulk data synchronization jobs from Polytomic to monitor and manage data pipeline execution across connections.
Instructions
List all bulk syncs in Polytomic.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/polytomic_mcp/server.py:438-442 (handler)The implementation of the `list_bulk_syncs` MCP tool, which calls `polytomic_request("/bulk/syncs")`.
@mcp.tool() async def list_bulk_syncs() -> str: """List all bulk syncs in Polytomic.""" result = await polytomic_request("/bulk/syncs") return json.dumps(result, indent=2)