MCP Hub
Back to servers

agloop-mcp

An MCP server providing 14 introspection tools for AgLoop, a custom agent framework for VS Code Copilot. It enables users to monitor and manage agent states, tasks, execution logs, and plans through a set of specialized read and write tools.

Updated
Mar 2, 2026

agloop-mcp

MCP server providing 14 agent introspection tools for AgLoop — the VS Code Copilot custom agent framework.

Quick Start

Add to your .vscode/mcp.json:

For claude desktop or cli users use mcpservers instead of servers

{
  "servers": {
    "agloop": {
      "command": "uvx",
      "args": ["agloop-mcp"]
    }
  }
}

Or run directly:

uvx agloop-mcp

Tools

Read Tools (10)

ToolDescription
agloop_get_stateFull AgLoop state: phase, tasks, iteration, compaction context
agloop_get_taskSingle task details by ID
agloop_list_tasksAll tasks with optional status/dependency filter
agloop_get_logsExecution log entries with agent/task/limit filters
agloop_get_planCurrent plan (YAML or Markdown)
agloop_get_compaction_contextCompaction recovery context
agloop_search_logsFull-text search through execution logs
agloop_get_agent_infoAgent definition file (.agent.md) content
agloop_get_next_taskTopological-sort next task recommendation
agloop_list_agentsAll available agent names

Write Tools (4)

ToolDescription
agloop_update_taskUpdate task status and result log
agloop_append_logAppend structured entry to execution log
agloop_create_checkpointSnapshot current state for recovery
agloop_set_phaseTransition to a new phase

Configuration

The server uses the current working directory as the workspace root. Override with:

uvx agloop-mcp --workspace /path/to/project

State Files

The server reads/writes from .agloop/ in the workspace root:

.agloop/
├── state.json        # Phase, tasks, iteration
├── log.json          # Execution log (JSON Lines)
├── plan.yaml         # Current plan
└── checkpoints/      # State snapshots

Requirements

  • Python 3.11+
  • No additional dependencies beyond mcp

License

MIT

Reviews

No reviews yet

Sign in to write a review