basic-memory

recent_activity

Get recent activity from across the knowledge base.

Timeframe supports natural language formats like: - "2 days ago" - "last week" - "yesterday" - "today" - "3 weeks ago" Or standard formats like "7d"

Input Schema

NameRequiredDescriptionDefault
depthNo
max_relatedNo
pageNo
page_sizeNo
timeframeNo7d
typeNo

Input Schema (JSON Schema)

{ "$defs": { "SearchItemType": { "description": "Types of searchable items.", "enum": [ "entity", "observation", "relation" ], "title": "SearchItemType", "type": "string" } }, "properties": { "depth": { "anyOf": [ { "type": "integer" }, { "type": "null" } ], "default": 1, "title": "Depth" }, "max_related": { "default": 10, "title": "Max Related", "type": "integer" }, "page": { "default": 1, "title": "Page", "type": "integer" }, "page_size": { "default": 10, "title": "Page Size", "type": "integer" }, "timeframe": { "anyOf": [ { "type": "string" }, { "type": "null" } ], "default": "7d", "title": "Timeframe" }, "type": { "anyOf": [ { "items": { "$ref": "#/$defs/SearchItemType" }, "type": "array" }, { "type": "null" } ], "default": null, "title": "Type" } }, "title": "recent_activityArguments", "type": "object" }