Skip to main content
Glama
zebbern

agloop-mcp

by zebbern

agloop_get_task

Retrieve task details including status, dependencies, acceptance criteria, and result log by providing a task ID for monitoring and management.

Instructions

Get details for a single task by ID. Returns task status, dependencies, acceptance criteria, and result log.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
task_idYes

Implementation Reference

  • The handler for the tool 'agloop_get_task' is defined here as a decorator-wrapped function that uses the StateManager to retrieve task details.
    def agloop_get_task(task_id: str) -> str:
        """Get details for a single task by ID. Returns task status, dependencies, acceptance criteria, and result log."""
        task = _sm().get_task(task_id)
        if not task:
            return json.dumps({"error": f"Task '{task_id}' not found"})
        return json.dumps(asdict(task), 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