Skip to content

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#

ParameterTypeRequiredDescription
sinceDaysinteger (1-365)optionalLook back N days (default 30)
limitinteger (1-100)optionalMax 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
  }
}