Search Documentation
Search across all documentation pages
list_active_agents
List agents that have recently written memories. Useful for cross-agent coordination and understanding who has been active. Returns agent identifiers with their activity timestamps and memory counts.
Parameters#
| Parameter | Type | Required | Description |
|---|---|---|---|
| sinceDays | integer (1-365) | optional | Look back N days (default 30) |
| limit | integer (1-100) | optional | Max agents to return (default 20) |
Returns#
An array of agent objects, each containing the agent ID, agent type, last activity timestamp, and the number of memories written in the lookback period.
Example#
json
{
"tool": "list_active_agents",
"arguments": {
"sinceDays": 7,
"limit": 10
}
}