mindwiki_capture
Quick-capture content into your vault inbox. The path is auto-generated under capture/ with the date and a slug derived from the title.
Scope: write
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
content | string | Yes | Content to capture |
title | string | No | Optional title (auto-generated if omitted) |
Example Request
json
{
"tool": "mindwiki_capture",
"arguments": {
"content": "Interesting idea about feedback loops in team dynamics — the same pattern shows up in complex systems.",
"title": "Feedback loops in teams"
}
}Example Response
json
{
"success": true,
"path": "capture/2026-05-09-feedback-loops-in-teams.md",
"seq": 415
}The captured page is stored as standard markdown with frontmatter. From there it lives in your capture/ folder until you move it elsewhere or link it from somewhere else in the vault.
The REST equivalent is POST /vault/capture with the same body.