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

browse-ai

v0.1.5

Published

Reliable research infrastructure for AI agents. MCP server with real-time web search, evidence extraction, and structured citations.

Readme

browse-ai

Reliable research infrastructure for AI agents.

MCP server with real-time web search, evidence extraction, and structured citations. Turn any AI assistant into a research engine.

What it does

Instead of letting your AI hallucinate, browse-ai gives it real-time access to the web with structured, cited answers:

Your question → Web search → Fetch pages → Extract claims → Build evidence graph → Cited answer

Every answer includes:

  • Claims with source URLs
  • Confidence score (0-1)
  • Source quotes from actual web pages
  • Execution trace with timing

Quick Start

npx browse-ai setup

This auto-configures Claude Desktop. You'll need:

Manual Setup

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "browse-ai": {
      "command": "npx",
      "args": ["-y", "browse-ai"],
      "env": {
        "SERP_API_KEY": "tvly-your-key",
        "OPENROUTER_API_KEY": "your-openrouter-key"
      }
    }
  }
}

Cursor / Windsurf

Add to your MCP settings:

{
  "browse-ai": {
    "command": "npx",
    "args": ["-y", "browse-ai"],
    "env": {
      "SERP_API_KEY": "tvly-your-key",
      "OPENROUTER_API_KEY": "your-openrouter-key"
    }
  }
}

MCP Tools

| Tool | Description | |------|-------------| | browse_search | Search the web via Tavily | | browse_open | Fetch and parse a page into clean text | | browse_extract | Extract structured knowledge from a page | | browse_answer | Full pipeline: search + extract + cite | | browse_compare | Compare raw LLM vs evidence-backed answer |

Example

Ask Claude: "Use browse_answer to explain what causes aurora borealis"

Response:

{
  "answer": "Aurora borealis occurs when charged particles from the Sun...",
  "claims": [
    {
      "claim": "Aurora borealis is caused by solar wind particles...",
      "sources": ["https://en.wikipedia.org/wiki/Aurora"]
    }
  ],
  "sources": [
    {
      "url": "https://en.wikipedia.org/wiki/Aurora",
      "title": "Aurora - Wikipedia",
      "domain": "en.wikipedia.org",
      "quote": "An aurora is a natural light display..."
    }
  ],
  "confidence": 0.92
}

Why browse-ai?

| Feature | Raw LLM | browse-ai | |---------|---------|-----------| | Sources | None | Real URLs with quotes | | Citations | Hallucinated | Verified from pages | | Confidence | Unknown | 0-1 score | | Freshness | Training data | Real-time web | | Claims | Mixed in text | Structured + linked |

Tech Stack

  • Search: Tavily API
  • Parsing: @mozilla/readability + linkedom
  • AI: OpenRouter (100+ models)
  • Protocol: Model Context Protocol (MCP)

License

MIT