Skip to main content
Glama
zebbern

agloop-mcp

by zebbern

agloop_create_checkpoint

Save the current state for recovery in the AgLoop agent framework. Use this tool to create checkpoints that preserve agent states, tasks, and execution logs.

Instructions

Create a checkpoint of the current state for recovery. COORDINATOR ONLY.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
labelNo
triggerNomanual

Implementation Reference

  • Implementation of the agloop_create_checkpoint tool handler.
    @mcp.tool()
    def agloop_create_checkpoint(
        label: str = "",
        trigger: str = "manual",
    ) -> str:
        """Create a checkpoint of the current state for recovery. COORDINATOR ONLY."""
        result = _sm().create_checkpoint(
            label=label or None,
            trigger=trigger,
        )
        if not result:
            return json.dumps({"error": "Failed to create checkpoint"})
        return json.dumps(
            {"id": result["id"], "label": result["label"], "timestamp": result["timestamp"]},

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/zebbern/agloop-mcp'

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