Skip to main content
Glama
zebbern

agloop-mcp

by zebbern

agloop_get_plan

Retrieve the current plan file contents (plan.yaml or plan.md) to monitor and manage agent tasks and execution within the AgLoop framework.

Instructions

Read the current plan (plan.yaml or plan.md). Returns raw file contents.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The MCP tool handler for "agloop_get_plan", which reads the plan from the StateManager and returns the contents or an error message.
    @mcp.tool()
    def agloop_get_plan() -> str:
        """Read the current plan (plan.yaml or plan.md). Returns raw file contents."""
        plan = _sm().get_plan()
        if not plan:
            return json.dumps({"error": "No plan found"})
        return plan

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