Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Capabilities
Features and capabilities supported by this server
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| agloop_get_state | Read the full AgLoop state including phase, tasks, iteration, and compaction context. Returns null if no active loop. |
| agloop_get_task | Get details for a single task by ID. Returns task status, dependencies, acceptance criteria, and result log. |
| agloop_list_tasks | List all tasks with optional status filter. Returns array of task objects. |
| agloop_get_logs | Read execution log entries. Supports filtering by agent, task, and limiting results. |
| agloop_get_plan | Read the current plan (plan.yaml or plan.md). Returns raw file contents. |
| agloop_get_compaction_context | Get compaction recovery context: compaction count, pending decision, last delegation, recovery hint. Critical after VS Code context compaction. |
| agloop_search_logs | Full-text search through execution logs. Case-insensitive search across agent, action, task_id, phase, input/output summaries. |
| agloop_get_agent_info | Read the definition file (.agent.md) for a specific agent. Returns the full agent prompt including frontmatter. |
| agloop_get_next_task | Compute the next task using topological sort. Returns the recommended next task and reasoning. |
| agloop_list_agents | List all available agent names in .github/agents/. |
| agloop_update_task | Update a task's status and/or result log. Auto-sets timestamps. COORDINATOR ONLY. |
| agloop_append_log | Append a structured entry to the execution log. COORDINATOR ONLY. |
| agloop_create_checkpoint | Create a checkpoint of the current state for recovery. COORDINATOR ONLY. |
| agloop_set_phase | Transition to a new phase. COORDINATOR ONLY. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |