list_syncs
Retrieve all configured data synchronization tasks in Polytomic to monitor and manage data pipeline operations.
Instructions
List all model syncs in Polytomic.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/polytomic_mcp/server.py:243-247 (handler)The `list_syncs` tool implementation in `src/polytomic_mcp/server.py` which retrieves a list of syncs via `polytomic_request("/syncs")` and returns them as a JSON string.
@mcp.tool() async def list_syncs() -> str: """List all model syncs in Polytomic.""" result = await polytomic_request("/syncs") return json.dumps(result, indent=2)