mapify

n8n node for Mapify AI mind map generation

Package Information

Downloads: 21 weekly / 51 monthly
Latest Version: 1.0.4
Author: Mapify Team

Documentation

n8n-nodes-mapify

npm version

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.

Mapify

Table of Contents

Installation

Follow the installation guide in the n8n community nodes documentation.

Community Nodes Installation

  1. Go to Settings > Community Nodes in your n8n instance
  2. Select Install
  3. Enter @xmindltd/n8n-nodes-mapify in Enter npm package name
  4. 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.

  1. Add a Mapify node to your workflow
  2. Select OAuth2 as the authentication method
  3. Click Connect and follow the authorization flow
  4. Grant access to your Mapify account

Option 2: API Key

For programmatic access or service accounts.

  1. Log in to your Mapify account at mapify.so
  2. Navigate to Settings → Integrations
  3. Click Generate API Credential
  4. Copy the generated API key
  5. 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 channel

Example 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 content

Example 3: Research Assistant

Trigger: Webhook (search query)
    ↓
Mapify: Generate from Web Search
    - Query: {{ $json.query }}
    ↓
Email: Send mind map to researcher

Output 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": { ... }
}

Resources

Discussion