get_sync
Retrieve detailed information about a specific data synchronization task in Polytomic, including configuration, status, and execution history.
Instructions
Get details for a specific sync.
Args: id: The sync ID
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes |
Implementation Reference
- src/polytomic_mcp/server.py:250-258 (handler)The implementation of the get_sync MCP tool, which fetches details for a specific sync using the Polytomic API.
@mcp.tool() async def get_sync(id: str) -> str: """Get details for a specific sync. Args: id: The sync ID """ result = await polytomic_request(f"/syncs/{id}") return json.dumps(result, indent=2)