docs(understand): document mochi-donut card/deck/attachment tools - #22
Merged
Merged
Conversation
The bundled mochi-donut MCP server is gaining six tools (list_cards, get_card, update_card, create_deck, update_deck, add_attachment) alongside the existing fetch_url/list_decks/create_cards. Document the full toolset in the understand plugin README and bump its version to reflect the new capability surface. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
JoshuaOliphant
marked this pull request as ready for review
July 18, 2026 15:15
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
understandplugin README: the existingfetch_url,list_decks,create_cards, plus six new tools landing in the paired mochi_donut PR (feat/card-management-tools):list_cards,get_card,update_card,create_deck,update_deck,add_attachment.understandplugin version 0.1.2 → 0.2.0 inplugin.json,marketplace.json, and the README title, to match.This pairs with the
feat/card-management-toolsbranch in mochi_donut, which adds the six new tools to the bundled MCP server (mochi_donut v0.4.0). That work was still in progress at the time of this PR; this documents the intended toolset ahead of that release.Newly documented tools
list_cards(deck_id?, limit?, bookmark?)— list cards, optionally filtered by deck, paginated via bookmarkget_card(card_id)— fetch one card's full content, deck, tagsupdate_card(card_id, content?, deck_id?, manual_tags?, archived?, trashed?)— edit/move/tag/archive/soft-delete a cardcreate_deck(name, parent_id?)— create a deck (optionally nested)update_deck(deck_id, name?, parent_id?, archived?)— rename/re-parent/archive a deckadd_attachment(card_id, file_path, filename?)— upload an image attachment to a cardTest plan
python -m json.toolonplugin.jsonandmarketplace.json— validpython scripts/check_marketplace_versions.py— versions in syncpython scripts/sync_shared.py— shared artifacts unaffecteduv run pytest plugins/understand/tests -q— 8 passed🤖 Generated with Claude Code