mq_ls
List all registered agents in the Agent-MQ message queue system to view available AI coding agents for communication and task coordination.
Instructions
List all registered agents
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp/src/index.ts:43-46 (handler)Implementation of the 'mq_ls' tool which lists all registered agents by calling the 'client.ls()' method.
server.tool("mq_ls", "List all registered agents", {}, async () => { const agents = await client.ls() as unknown[]; return { content: agents.map(a => ({ type: "text" as const, text: JSON.stringify(a) })) }; });