From 33849d43d88709ccc7303412e8d371214209010e Mon Sep 17 00:00:00 2001 From: aniongithub Date: Sun, 17 May 2026 11:04:20 -0700 Subject: [PATCH] docs: document move_page tool in README --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 2649e18..9f3848d 100644 --- a/README.md +++ b/README.md @@ -84,7 +84,7 @@ The web UI is a static Preact app served by `mind-map serve` over HTTP. It uses Both modes use the same wiki engine and the same wiki directory (`~/.mind-map/wiki` by default). Multiple stdio processes can safely share the same wiki via SQLite page locking. -## MCP Tools (9 total) +## MCP Tools (10 total) | Tool | Description | |------|-------------| @@ -93,6 +93,7 @@ Both modes use the same wiki engine and the same wiki directory (`~/.mind-map/wi | `get_page` | Read a page with parsed frontmatter, body, outgoing links, and backlinks | | `create_page` | Create a new page (markdown with optional YAML frontmatter) | | `update_page` | Update an existing page's content | +| `move_page` | Rename or relocate a page atomically (use instead of `create_page` + `delete_page`) | | `delete_page` | Delete a page from the wiki and search index | | `list_pages` | List pages, optionally filtered by path prefix | | `get_backlinks` | Get all pages that link to a given page |