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

maybethisone

v0.2.1

Published

Check availability of GitHub orgs, npm packages, social media handles, and domains

Readme

maybethisone

A CLI tool and MCP server to check name availability across multiple platforms - GitHub, npm, Twitter/X, LinkedIn, and domains.

Installation

# Clone the repo
git clone https://github.com/nxnom/maybethisone.git
cd maybethisone

# Install dependencies
bun install

# Install Playwright browsers (first time only)
bunx playwright install chromium

Usage

# Check a single name
bun run src/index.ts myproject

# Check multiple names
bun run src/index.ts myproject coolstartup brandname

What it checks

| Platform | Resource | | --------- | ---------------------------------------------------- | | GitHub | Organization (github.com/orgs/name) | | npm | Package name (npmjs.com/package/name) | | npm | Organization scope (@name/...) | | Twitter/X | Username (x.com/name) | | LinkedIn | Company page (linkedin.com/company/name) | | Domains | .com, .dev, .io, .org, .net, .co, .app |

Output

🔍 maybethisone - Name Availability Checker

Results for: myproject

┌────────────────────────────────────────┬────────────────────┐
│ Resource                               │ Status             │
├────────────────────────────────────────┼────────────────────┤
│ github.com/orgs/myproject              │ ✓ Available        │
├────────────────────────────────────────┼────────────────────┤
│ npm package: myproject                 │ ✗ Taken            │
├────────────────────────────────────────┼────────────────────┤
│ npm org: @myproject                    │ ✗ Taken            │
├────────────────────────────────────────┼────────────────────┤
│ x.com/myproject                        │ ✗ Taken            │
├────────────────────────────────────────┼────────────────────┤
│ linkedin.com/company/myproject         │ ✓ Available        │
├────────────────────────────────────────┼────────────────────┤
│ myproject.com                          │ ✗ Taken            │
├────────────────────────────────────────┼────────────────────┤
│ myproject.dev                          │ ~ No DNS           │
└────────────────────────────────────────┴────────────────────┘

Status Legend

| Status | Meaning | | ------------- | ---------------------------------------------------------------------- | | ✓ Available | Confirmed available | | ✗ Taken | Confirmed taken | | ~ Maybe | npm package - may conflict with normalized names or private packages | | ~ No DNS | No DNS record found (domain may still be registered - verify manually) | | ? Error | Check failed |

MCP Server (for AI Agents)

maybethisone includes an MCP (Model Context Protocol) server that allows AI agents like Claude to check name availability.

Tools Available

| Tool | Description | | ---------------------------- | -------------------------------------------------------------- | | check_name_availability | Full check - all platforms including social media (uses browser) | | check_name_availability_quick | Quick check - GitHub, npm package, and .com domain only (no browser) |

Claude Desktop Configuration

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "maybethisone": {
      "command": "npx",
      "args": ["maybethisone-mcp"]
    }
  }
}

Or if installed locally:

{
  "mcpServers": {
    "maybethisone": {
      "command": "node",
      "args": ["/path/to/maybethisone/dist/mcp.js"]
    }
  }
}

Example Response

{
  "name": "myproject",
  "results": [
    { "resource": "github.com/orgs/myproject", "status": "available" },
    { "resource": "npm package: myproject", "status": "taken" },
    { "resource": "myproject.com", "status": "taken" }
  ]
}

Project Structure

src/
├── index.ts              # CLI entry point
├── mcp.ts                # MCP server entry point
├── types.ts              # TypeScript type definitions
├── checkers/
│   ├── index.ts          # Re-exports all checkers
│   ├── github.ts         # GitHub org checker
│   ├── npm.ts            # npm package & org checker
│   ├── twitter.ts        # Twitter/X checker
│   ├── linkedin.ts       # LinkedIn checker
│   └── domain.ts         # Domain DNS checker
└── utils/
    ├── browser.ts        # Playwright browser management
    └── logger.ts         # Progress logging utilities

Limitations

  • npm package names: npm normalizes package names (e.g., my-pkg and my_pkg are considered the same) and private packages are not visible, so even if the exact name appears available, publishing may still fail
  • Domain checks: Uses DNS lookup which may show false positives for registered domains without DNS records
  • Rate limiting: Some platforms may rate limit requests if checking many names
  • Bot protection: Twitter/X, LinkedIn, and npm org checks use Playwright to bypass Cloudflare/bot protection