Use and maintain the graphthulhu knowledge graph MCP to store investigations, architectural decisions, plans, and session context in a persistent Obsidian-backed vault; triggers automatically at session start, after analysis or investigations, when recording decisions, and when the user corrects stored knowledge.
99
99%
Does it follow best practices?
Impact
Pending
No eval scenarios have been run
Passed
No known issues
Detailed steps for each graphthulhu workflow pattern.
graph_overview to see total pages, namespaces, and most-connected nodes.search with relevant keywords to surface prior context.list_pages filtered by the relevant namespace.Expected output: a clear picture of what is already known before writing any new code.
search for full-text discovery across all blocks.get_page when you know the exact page name.find_connections to understand how two topics relate.find_by_tag to locate pages grouped by tag.Expected output: relevant blocks with surrounding context.
search or get_page.upsert_blocks or append_blocks.create_page using the correct namespace.link_pages.Expected output: durable, findable knowledge stored in the vault.
decision_create on the page where context is richest.decision_resolve with the chosen option and rationale.decision_defer if the question is blocked or premature.decision_check to review open decisions on a page.Expected output: decisions are traceable and linked to the context that produced them.
When the user corrects stored knowledge:
search to find the incorrect block or page.update_block to fix incorrect content, or delete_page if the page is wholly wrong.Expected output: vault reflects current ground truth before the session continues.