npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@xmindltd/n8n-nodes-mapify

v1.0.4

Published

n8n node for Mapify AI mind map generation

Readme

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