mindwiki_get_agent_activity
Return the recent MCP activity log so users and agents can see what AI clients read, wrote, proposed, or attempted.
Scope: read
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
limit | number | No | Max activity events to return (default: 50, max: 200) |
Example Request
json
{
"tool": "mindwiki_get_agent_activity",
"arguments": {
"limit": 25
}
}Example Response
json
{
"activity": [
{
"tool_name": "mindwiki_search",
"status": "ok",
"duration_ms": 142,
"arguments": { "query": "feedback loops" },
"result_summary": "3 results returned",
"files_read": [],
"files_written": [],
"session": "Claude Desktop",
"created_at": "2026-05-09T15:25:11Z"
},
{
"tool_name": "mindwiki_capture",
"status": "ok",
"duration_ms": 88,
"arguments": { "title": "Feedback loops in teams" },
"result_summary": "Captured to capture/2026-05-09-feedback-loops-in-teams.md",
"files_read": [],
"files_written": ["capture/2026-05-09-feedback-loops-in-teams.md"],
"session": "Claude Desktop",
"created_at": "2026-05-09T15:24:02Z"
}
]
}This is the same data the macOS Agents → Sessions & Activity view renders. See Sessions & Activity.