Skip to main content
Glama
zebbern

agloop-mcp

by zebbern

agloop_list_tasks

Retrieve all tasks from AgLoop agent framework with optional filtering by status or dependencies to monitor and manage workflow execution.

Instructions

List all tasks with optional status filter. Returns array of task objects.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
statusNo
depends_onNo

Implementation Reference

  • Implementation of the agloop_list_tasks tool. It uses the StateManager to list tasks and returns them as a JSON string.
    @mcp.tool()
    def agloop_list_tasks(status: str = "", depends_on: str = "") -> str:
        """List all tasks with optional status filter. Returns array of task objects."""
        tasks = _sm().list_tasks(
            status=status or None,
            depends_on=depends_on or None,
        )
        return json.dumps([asdict(t) for t in tasks], indent=2)

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