list_agents
View all AI outreach agents with their current status, platform, and last activity time to monitor automated client acquisition campaigns.
Instructions
List all AI outreach agents with their status, platform, and last run time
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/tools/agents.ts:10-13 (handler)The handler for the 'list_agents' tool, which calls the SwarmixClient to retrieve the agents list.
handler: async () => { const agents = await client.listAgents(); return JSON.stringify(agents, null, 2); }, - src/tools/agents.ts:6-9 (registration)Definition and registration of the 'list_agents' tool within the toolset.
{ name: 'list_agents', description: 'List all AI outreach agents with their status, platform, and last run time', inputSchema: { type: 'object' as const, properties: {} }, - src/api-client.ts:34-36 (helper)The underlying API client method that performs the actual network request to fetch agents.
async listAgents() { return this.request('GET', '/api/agents'); }