Skip to main content
Glama

restore_checkpoint

Resume simulation from a saved checkpoint to continue debugging or testing from a specific state in Xcelium MCP Server.

Instructions

Restore simulation to a previously saved checkpoint.

Args: name: Checkpoint name to restore. Empty = last saved checkpoint.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Implementation Reference

  • Implementation of the restore_checkpoint tool handler.
    @mcp.tool()
    async def restore_checkpoint(name: str = "") -> str:
        """Restore simulation to a previously saved checkpoint.
    
        Args:
            name: Checkpoint name to restore. Empty = last saved checkpoint.
        """
        bridge = _get_bridge()
        cmd = f"__RESTORE__ {name}" if name else "__RESTORE__"
        result = await bridge.execute(cmd, timeout=120.0)
        return result

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/hslee-cmyk/xcelium-mcp'

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