Skip to main content
Glama
zebbern

agloop-mcp

by zebbern

agloop_append_log

Add structured execution records to track agent actions, phases, and statuses within the AgLoop framework for monitoring and management.

Instructions

Append a structured entry to the execution log. COORDINATOR ONLY.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
agentYes
actionYes
phaseYes
statusYes
task_idNo
input_summaryNo
output_summaryNo

Implementation Reference

  • The agloop_append_log tool handler, which utilizes the StateManager to append a structured log entry.
    def agloop_append_log(
        agent: str,
        action: str,
        phase: str,
        status: str,
        task_id: str = "",
        input_summary: str = "",
        output_summary: str = "",
    ) -> str:
        """Append a structured entry to the execution log. COORDINATOR ONLY."""
        _sm().append_log(
            agent=agent,
            action=action,
            phase=phase,
            status=status,
            task_id=task_id or None,
            input_summary=input_summary,
            output_summary=output_summary,
        )
        return json.dumps({"success": True})

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