Skip to main content
Glama

list_sync_executions

Retrieve execution history for a data synchronization, including status and performance details, to monitor and troubleshoot sync operations.

Instructions

List execution history for a sync.

Args: id: The sync ID limit: Maximum number of executions to return (default 10)

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
idYes
limitNo

Implementation Reference

  • The implementation of the 'list_sync_executions' tool handler which queries the Polytomic API for sync execution history.
    async def list_sync_executions(id: str, limit: int = 10) -> str:
        """List execution history for a sync.
    
        Args:
            id: The sync ID
            limit: Maximum number of executions to return (default 10)
        """
        result = await polytomic_request(f"/syncs/{id}/executions?limit={limit}")
        return json.dumps(result, indent=2)
  • The registration of the 'list_sync_executions' function as an MCP tool using the @mcp.tool decorator.
    @mcp.tool()

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/therevenueengineer/polytomic-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server