@xmindltd/n8n-nodes-mapify
v1.0.4
Published
n8n node for Mapify AI mind map generation
Readme
n8n-nodes-mapify
This is an n8n community node that lets you use Mapify in your n8n workflows.
Mapify is a powerful AI mind map tool that converts diverse content types—including PDFs, Word documents, PowerPoint presentations, YouTube videos, and images—into clear and structured mind maps in just minutes.
n8n is a fair-code licensed workflow automation platform.

Table of Contents
Installation
Follow the installation guide in the n8n community nodes documentation.
Community Nodes Installation
- Go to Settings > Community Nodes in your n8n instance
- Select Install
- Enter
@xmindltd/n8n-nodes-mapifyin Enter npm package name - Select Install
After installation, the Mapify node will be available in your n8n node palette.
Credentials
This node supports two authentication methods:
Option 1: OAuth2 (Recommended)
The easiest way to connect - just click "Connect" and authorize with your Mapify account.
- Add a Mapify node to your workflow
- Select OAuth2 as the authentication method
- Click Connect and follow the authorization flow
- Grant access to your Mapify account
Option 2: API Key
For programmatic access or service accounts.
- Log in to your Mapify account at mapify.so
- Navigate to Settings → Integrations
- Click Generate API Credential
- Copy the generated API key
- In n8n, create a new Mapify API credential and paste the key
Note: Store your API key securely. If you lose it, you'll need to generate a new one.
Operations
Generate Mind Map from Text Prompt
Transform any text prompt into a structured mind map.
Parameters:
- Text Prompt (required): The text content to generate a mind map from
Generate Mind Map from Web Link
Create a mind map by summarizing content from any web page.
Parameters:
- Web Link (required): URL of the web page (e.g.,
https://example.com/article)
Generate Mind Map from Web Search
Generate a mind map based on web search results.
Parameters:
- Search Query (required): The search query to find relevant content
Generate Mind Map from YouTube Video
Summarize YouTube videos into organized mind maps.
Parameters:
- YouTube URL (required): Full YouTube video URL (e.g.,
https://www.youtube.com/watch?v=...)
Additional Options (All Operations)
- Language: Output language for the mind map (16 languages supported)
- English, 中文 (简体/繁體), 日本語, 한국어, Español, Français, Deutsch, Italiano, Português, Русский, Türkçe, Thai, Indonesian, Vietnamese, Hindi
- Wait Timeout: Maximum time to wait for generation (1-120 minutes, default: 30)
Usage Examples
Example 1: Summarize Articles to Slack
Trigger: RSS Feed (new blog post)
↓
Mapify: Generate from Web Link
↓
Slack: Send mind map preview to channelExample 2: YouTube Video Summaries
Trigger: Manual / Schedule
↓
Mapify: Generate from YouTube Video
- URL: https://youtube.com/watch?v=...
- Language: English
↓
Notion: Create page with mind map contentExample 3: Research Assistant
Trigger: Webhook (search query)
↓
Mapify: Generate from Web Search
- Query: {{ $json.query }}
↓
Email: Send mind map to researcherOutput Structure
{
"markdown": "# Topic\n## Section 1\n- Point 1\n- Point 2\n## Section 2\n...",
"shareUrl": "https://mapify.so/app/share/...",
"imageUrl": "https://...",
"document": { ... }
}