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

@bycrawl/mcp

v0.5.0

Published

MCP server for ByCrawl — query 9+ social media platforms (Threads, X, Facebook, Reddit, LinkedIn, TikTok, Instagram, YouTube) from AI agents

Readme

MCP server for ByCrawl — query 12 social media platforms from AI agents like Claude and Cursor.

Supported platforms: Threads, X/Twitter, Facebook, Reddit, LinkedIn, Xiaohongshu (RED), TikTok, Instagram, YouTube, Dcard, 104 Job Bank

Setup

Claude Code

claude mcp add bycrawl -e BYCRAWL_API_KEY=sk_byc_xxx -- npx -y @bycrawl/mcp

Claude Desktop / Cursor

Add to your MCP config:

{
  "mcpServers": {
    "bycrawl": {
      "command": "npx",
      "args": ["-y", "@bycrawl/mcp"],
      "env": {
        "BYCRAWL_API_KEY": "sk_byc_xxx"
      }
    }
  }
}

Tools (64)

| Platform | Tools | Examples | |----------|-------|---------| | Threads | 8 | Search posts, get user profile/replies, public feed | | X/Twitter | 4 | Search tweets, get user timeline | | Facebook | 4 | Get page, search posts, get post by URL | | Reddit | 5 | Get subreddit, search posts, get user | | LinkedIn | 7 | Get company, search jobs/users, get post | | Xiaohongshu | 9 | Search notes, get comments, resolve share URL | | TikTok | 7 | Get video, search, comments, subtitles, browse by category | | Instagram | 5 | Search hashtags, get user/post, comments, user posts | | YouTube | 5 | Get video/channel, search, comments, transcription | | Dcard | 6 | Get post/forum, search posts, comments, persona | | Job104 | 3 | Search jobs, get company/job details | | System | 1 | Health check |

Usage Examples

Example 1: Search Threads posts about a topic

Prompt: "What are people saying about OpenAI on Threads?"

Claude will call threads_search_posts with query: "OpenAI" and return a summary of recent public posts, including text, like counts, and reply counts.

Example 2: Get LinkedIn company info

Prompt: "Tell me about Anthropic's LinkedIn presence — what do they do, how big are they?"

Claude will call linkedin_get_company with company_id: "anthropic" and return the company's description, employee count, industry, headquarters, and recent activity.

Example 3: Fetch YouTube video comments

Prompt: "Summarize the comments on this YouTube video: https://www.youtube.com/watch?v=dQw4w9WgXcQ"

Claude will call youtube_get_video_comments with video_id: "dQw4w9WgXcQ" and return the top comments with like counts, which it can then summarize for sentiment and key themes.

API Key

Get your API key at bycrawl.com.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | BYCRAWL_API_KEY | Yes | — | Your ByCrawl API key | | BYCRAWL_API_URL | No | https://api.bycrawl.com | API base URL (for self-hosting) |

License

MIT