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

morph-worker

v0.1.0

Published

Bulk Morph API Key Generator — automate morphllm.com account creation with temp-mail & GSuite

Readme

🦊 Morph Worker


🎯 What is Morph Worker?

Morph Worker automates the creation of morphllm.com accounts and extracts their API keys — in bulk. Perfect for developers who need multiple API keys for testing, benchmarking, or multi-agent setups.

Features

  • Bulk Account Creation — Create N accounts with one command
  • 📧 Multiple Email Providers — Mocasus temp-mail API + GSuite/Workspace
  • 🤖 Full Automation — Clerk signup → email verification → API key extraction
  • 🔄 Resume Support — Skip already-created accounts, continue from where stopped
  • 📤 Multi-format Export — JSON / CSV / .env output
  • 🎨 Human-like — Realistic typing delays, random viewports, stealth mode
  • 🖥️ CLI First — Node.js CLI (morphworker) with live progress

📦 Quick Start

Prerequisites

  • Python 3.11+
  • Node.js 18+
  • Chromium (for Playwright browser automation)

Installation

# Install from npm
npm install -g morph-worker

# Install Python + Playwright deps
morphworker install
# Or manually:
# pip install -r requirements.txt && playwright install chromium

Configuration

# Set up temp-mail API key
morphworker config --set mocasus_api_key=YOUR_KEY_HERE

# Show current config
morphworker config

Usage

# Create 10 accounts
morphworker run 10

# Create 5 with concurrency
morphworker run 5 --concurrency 2

# Resume from where you stopped
morphworker run 10 --resume

# Show browser window (debug)
morphworker run 3 --no-headless

# Use GSuite email provider
morphworker run 5 --provider gsuite --password MyStrongPass123

# Export results
morphworker export --format csv
morphworker export --format env

Using Python directly

python3 src/cli.py run 5
python3 src/cli.py config
python3 src/cli.py export --format json

🏗️ Architecture

morphworker <command>
       │
       ▼
┌──────────────┐    ┌───────────────────┐
│  CLI (Node)  │───▶│  Orchestrator (Py) │
└──────────────┘    └──────┬────────────┘
                           │
              ┌────────────┼────────────┐
              ▼            │            ▼
    ┌─────────────┐        │   ┌──────────────┐
    │ Email Gen   │        │   │ Browser Auto │
    │ • mocasus   │        │   │ • Clerk Sign │
    │ • gsuite    │        │   │ • API Key    │
    └─────────────┘        │   └──────────────┘
                           ▼
                   ┌──────────────┐
                   │ Export       │
                   │ • JSON/CSV   │
                   │ • .env       │
                   └──────────────┘

Pipeline (per account)

1. Generate Email → provider.create_inbox()
2. Clerk Signup   → morphllm.com → Fill form
3. Verify Email   → Poll inbox → Submit OTP
4. Extract Key    → Dashboard → Copy API key
5. Save           → output/state/account_N.json

📁 Project Structure

morph-worker/
├── assets/
│   └── logo.svg              # Green Morph-style logo
├── src/
│   ├── __init__.py
│   ├── cli.py                # Python CLI entry point
│   ├── config.py             # Configuration management
│   ├── orchestrator.py       # Bulk pipeline orchestrator
│   ├── email_providers/
│   │   ├── base.py           # Abstract provider interface
│   │   ├── mocasus.py        # Mocasus temp-mail adapter
│   │   └── gsuite.py         # GSuite adapter
│   ├── browser/
│   │   └── signup.py         # Playwright Clerk + Dashboard automation
│   └── utils/
│       └── export.py         # JSON/CSV/env export
├── output/                   # Generated credentials (gitignored)
│   └── state/                # Per-account state files
├── logs/                     # Runtime logs
├── cli.js                    # Node.js CLI wrapper
├── package.json
├── requirements.txt
├── PRD.md                    # Product Requirements Document
├── README.md
├── SECURITY.md
└── .gitignore

🔧 Configuration Reference

| Key | Type | Default | Description | |-----|------|---------|-------------| | email_provider | string | mocasus | Email backend: mocasus | gsuite | | mocasus_api_key | string | — | API key for mocasus.my.id temp-mail | | gsuite_domain | string | — | Google Workspace domain | | gsuite_admin_email | string | — | Workspace admin for API ops | | headless | bool | true | Run browser in headless mode | | stealth | bool | true | Inject anti-detection scripts | | concurrency | int | 1 | Parallel accounts | | default_password | string | MorphWorker2024! | Default password for accounts | | export_format | string | json | Export format: json | csv | env |


⚙️ Environment Variables

All config keys can also be set via environment variables:

export MOCASUS_API_KEY=your_key
export MORPH_EMAIL_PROVIDER=mocasus
export MORPH_CONCURRENCY=2
export MORPH_HEADLESS=false

🛡️ Security

Credentials are stored in output/state/ — treat this directory like you would .env files:

  • output/ is gitignored
  • ✅ API keys in ~/.morph-worker/config.json are local
  • ⚠️ Never commit credentials

See SECURITY.md for full policy.


📝 License

MIT — mmoaa