agloop_list_agents
Retrieve all agent names from the .github/agents/ directory to identify available automation resources within the AgLoop framework.
Instructions
List all available agent names in .github/agents/.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/agloop_mcp/server.py:127-131 (handler)The handler for the 'agloop_list_agents' tool, which lists available agents using the StateManager's list_agents method.
@mcp.tool() def agloop_list_agents() -> str: """List all available agent names in .github/agents/.""" agents = _sm().list_agents() return json.dumps(agents, indent=2)