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

vybsly-mcp

v1.1.0

Published

MCP server for Vybsly — AI-first search API with 29M+ full-content pages, encyclopedia federation, strict-mode filters, and real-time data tools. Works with Claude Desktop, Cursor, Windsurf, and any MCP client.

Readme

Works with Claude Desktop, Cursor, Windsurf, or any MCP-compatible client.

Why Vybsly

Other search APIs return snippets. Vybsly returns up to 30,000 characters of clean, extracted content per result — the full page, ready for RAG and agent context. No scraping, no follow-up fetches.

  • 29M+ web pages indexed with full content
  • 25M+ encyclopedia articles (federated search via /knowledge)
  • Strict mode: enforce research/news/educational domains with allowlists
  • Real-time data: stocks, crypto, weather, news, sports odds, maps
  • 8× cheaper than Tavily, $9/mo for 10,000 queries

Install

npm install -g vybsly-mcp

Or use directly with npx:

npx vybsly-mcp

Get an API key

Sign up free at vybsly.ai/developers.html — 1,000 free queries/month, no credit card required.

Claude Desktop setup

Edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "vybsly": {
      "command": "npx",
      "args": ["-y", "vybsly-mcp"],
      "env": {
        "VYBSLY_API_KEY": "your_api_key_here"
      }
    }
  }
}

Restart Claude Desktop. Vybsly tools will appear in the tool picker.

Cursor / Windsurf setup

Add to your .cursor/mcp.json or equivalent:

{
  "mcpServers": {
    "vybsly": {
      "command": "npx",
      "args": ["-y", "vybsly-mcp"],
      "env": { "VYBSLY_API_KEY": "your_api_key_here" }
    }
  }
}

Available tools

| Tool | Purpose | |------|---------| | vybsly_search | Full-content web search with strict-mode filters | | vybsly_knowledge | Federated web + encyclopedia search | | vybsly_extract | Extract full content from any URL (JS-rendered) | | vybsly_ask | Ask a question, get a sourced AI answer | | vybsly_stocks | Live stock prices | | vybsly_crypto | Live cryptocurrency data | | vybsly_weather | Current weather + 5-day forecast | | vybsly_news | Recent news articles | | vybsly_odds | Live sports betting lines | | vybsly_geocode | Address → coordinates | | vybsly_directions | Turn-by-turn driving directions |

Examples (natural language in Claude)

"Search for recent CRISPR research papers only" → uses vybsly_search with research=true, strict=true

"What's Einstein's most famous equation?" → uses vybsly_knowledge — gets encyclopedia + web results

"Extract the article at https://arxiv.org/abs/2501.00001" → uses vybsly_extract — returns full markdown

"What's AAPL trading at and how's the weather in NYC?" → uses vybsly_stocks + vybsly_weather in parallel

Environment variables

| Variable | Description | Default | |----------|-------------|---------| | VYBSLY_API_KEY | Your API key (optional for free tier) | (none) | | VYBSLY_BASE_URL | API base URL | https://vybsly.ai/api/v1 |

Free vs paid

  • Free: 1,000 queries/month, 50/day
  • Starter ($9/mo): 10,000/month
  • Pro ($29/mo): 50,000/month
  • Business ($99/mo): 250,000/month
  • Enterprise: Contact sales

Upgrade anytime at vybsly.ai/developers.html.

Links

License

MIT © Blue Fusion Labs