import_claude_export
Import Claude.ai conversation data from an exported JSON file to extract topics and build a hierarchical mindmap.
Instructions
Read a conversations.json file exported from Claude.ai and return a structured list of conversations. The user must first download their data at claude.ai → Settings → Account → Export Data, unzip the archive, and provide the path to conversations.json. After calling this tool, YOU (the AI) must analyze the returned conversation list and: 1) identify major topic clusters across the conversations, 2) call add_idea to create a root topic node for each cluster, 3) call add_idea to add notable sub-topics or recurring themes as children, 4) skip trivial, one-off, or very short conversations. Group by theme, not by conversation title. Aim for a clean, meaningful mindmap hierarchy. When done, call export_html so the user can visualize the result.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| filePath | Yes | Absolute path to the conversations.json file from the Claude.ai data export. Windows example: C:\Users\name\Downloads\conversations.json. Mac/Linux example: /Users/name/Downloads/conversations.json |