Create Mind Map
Creates a new mind map in MindStudio
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_MIND_MAP])
Add Node
Adds a new node to an existing mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NODE])
Connect Nodes
Creates a connection between two existing nodes in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CONNECT_NODES])
Delete Node
Removes a specific node from a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.DELETE_NODE])
Edit Node Content
Modifies the content of an existing node in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EDIT_NODE_CONTENT])
Change Node Color
Alters the color of a specific node in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CHANGE_NODE_COLOR])
Add Image To Node
Attaches an image to a specific node in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_IMAGE_TO_NODE])
Export Mind Map
Exports a mind map in various formats (e.g., PDF, PNG, SVG)
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.EXPORT_MIND_MAP])
Share Mind Map
Generates a shareable link for a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.SHARE_MIND_MAP])
Create Template
Creates a reusable template from an existing mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_TEMPLATE])
Apply Template
Applies a pre-existing template to a new or existing mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.APPLY_TEMPLATE])
Add Note To Node
Adds a detailed note to a specific node in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_NOTE_TO_NODE])
Create Subtopic
Creates a new subtopic under an existing node in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.CREATE_SUBTOPIC])
Rearrange Nodes
Automatically reorganizes the layout of nodes in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.REARRANGE_NODES])
Add Hyperlink
Adds a hyperlink to a specific node in a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.ADD_HYPERLINK])
Mind Map Created
Triggered when a new mind map is created in MindStudio
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MIND_MAP_CREATED])
Node Added
Triggered when a new node is added to a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NODE_ADDED])
Node Deleted
Triggered when a node is deleted from a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NODE_DELETED])
Node Content Changed
Triggered when the content of a node is modified
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.NODE_CONTENT_CHANGED])
Mind Map Shared
Triggered when a mind map is shared with other users
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MIND_MAP_SHARED])
Template Applied
Triggered when a template is applied to a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TEMPLATE_APPLIED])
Mind Map Exported
Triggered when a mind map is exported to a file
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MIND_MAP_EXPORTED])
Collaboration Started
Triggered when real-time collaboration on a mind map begins
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.COLLABORATION_STARTED])
Task Completed
Triggered when a task associated with a node is marked as completed
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TASK_COMPLETED])
Mind Map Revision Created
Triggered when a new revision of a mind map is saved
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MIND_MAP_REVISION_CREATED])
Tag Added
Triggered when a tag is added to a node or mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.TAG_ADDED])
Mind Map Merged
Triggered when two or more mind maps are merged into one
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MIND_MAP_MERGED])
Presentation Mode Activated
Triggered when presentation mode is activated for a mind map
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.PRESENTATION_MODE_ACTIVATED])
Milestone Reached
Triggered when a predefined milestone in a project mind map is reached
from composio_langchain import ComposioToolSet, Action
tool_set = ComposioToolSet()
tools = tool_set.get_tools(actions=[Action.MILESTONE_REACHED])