New:Socket for Asana Is Now Available.Learn more
Get Started

mintlify-parser

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mintlify-parser

Parse Mintlify llms-full.txt files and extract English-only documentation

latest
Source
npmnpm
Version
1.0.1
Version published
Maintainers
1
Created
Source

Mintlify Parser

A Node.js tool to parse Mintlify's llms-full.txt files and extract English-only documentation by filtering out non-English content.

Features

  • Fetches llms-full.txt files from any Mintlify documentation site
  • Automatically filters out non-English content (removes URLs with language codes like /es/, /fr/, etc.)
  • Outputs clean markdown file named after the source domain
  • Shows detailed statistics about parsed and filtered content

Installation

Global Installation

npm install -g mintlify-parser

Local Usage

npm install

Usage

As a Global Command

mintlify-parser https://docs.firecrawl.dev/llms-full.txt

With Node

node mintlify-parser.js https://docs.firecrawl.dev/llms-full.txt

With npm script

npm start https://docs.firecrawl.dev/llms-full.txt

Output

The script will:

  • Fetch the content from the provided URL
  • Parse and filter out non-English sections
  • Save the result as {domain}.md (e.g., docs.firecrawl.dev.md)
  • Display statistics about the parsing process

Example output:

⬇️  Fetching data from: https://docs.firecrawl.dev/llms-full.txt
⚙️  Parsing content...
🗑️  Removed: https://docs.firecrawl.dev/es/guide/intro

✅ Success!
📊 Total sections found: 45
🗑️  Non-English sections removed: 12
📝 English sections kept: 33
💾 Output saved to: docs.firecrawl.dev.md

Requirements

  • Node.js >= 18.0.0 (for native fetch API support)

License

MIT

Keywords

mintlify

FAQs

Package last updated on 28 Oct 2025

Related posts