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

@omniscrape/mcp

v0.9.0

Published

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

Downloads

77

Readme

MCP server for Omniscrape — query 18 social media & data platforms from AI agents like Claude and Cursor.

Supported platforms: Threads, X/Twitter, Facebook, Reddit, LinkedIn, TikTok, Instagram, YouTube, Dcard, 104 Job Bank, Google Maps, Trustpilot, PTT, 591 Rent, Hacker News, Luma, Product Hunt

Setup

Claude Code

claude mcp add omniscrape -e OMNISCRAPE_API_KEY=sk_oms_xxx -- npx -y @omniscrape/mcp

Claude Desktop / Cursor

Add to your MCP config:

{
  "mcpServers": {
    "omniscrape": {
      "command": "npx",
      "args": ["-y", "@omniscrape/mcp"],
      "env": {
        "OMNISCRAPE_API_KEY": "sk_oms_xxx"
      }
    }
  }
}

Tools (87)

| Platform | Tools | Examples | |----------|-------|---------| | Threads | 8 | Search posts, get user profile/replies, public feed | | X/Twitter | 4 | Search tweets, get user timeline | | Facebook | 8 | Get page, search posts, marketplace browse/search/item | | Reddit | 6 | Get subreddit, search posts, get user/post | | LinkedIn | 7 | Get company, search jobs/users, get post | | 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 | 4 | Get forum/posts, search posts, get persona | | Job104 | 3 | Search jobs, get company/job details | | Google Maps | 2 | Search places, get place details | | Trustpilot | 5 | Get business/reviews, search businesses/categories, suggestions | | PTT | 4 | Get board/posts, get post detail, search posts | | 591 Rent | 2 | Get rental listings, get listing detail | | Hacker News | 4 | Get item/user, get stories by type, get comments | | Luma | 6 | Get event, place events, search events, categories, calendar | | Product Hunt | 4 | Get leaderboard, search products, get product/reviews | | Web Fetch | 1 | Fetch any URL | | System | 2 | Health check, account info |

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.

Example 4: Check Trustpilot reviews

Prompt: "What's the Trustpilot rating for Stripe?"

Claude will call trustpilot_get_business with domain: "stripe.com" and return the trust score, star rating, review count, and business profile.

Example 5: Browse PTT discussions

Prompt: "What's trending on PTT Gossiping board?"

Claude will call ptt_get_board_posts with boardName: "Gossiping" and return the latest posts with titles, authors, and push counts.

Example 6: Find events on Luma

Prompt: "What tech events are happening in Taipei?"

Claude will call luma_search_events to find upcoming tech events in Taipei with event details, dates, and locations.

API Key

Get your API key at omniscrape.dev.

Environment Variables

| Variable | Required | Default | Description | |----------|----------|---------|-------------| | OMNISCRAPE_API_KEY | Yes | — | Your Omniscrape API key | | OMNISCRAPE_API_URL | No | https://api.omniscrape.dev | API base URL (for self-hosting) |

License

MIT