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

cloak-search-mcp

v1.0.8

Published

A 100% local, anti-bot-resilient web search Model Context Protocol (MCP) server utilizing `cloakbrowser` (a stealth Chromium automation tool).

Downloads

1,205

Readme

CloakBrowser Search MCP

A 100% local, anti-bot-resilient web search Model Context Protocol (MCP) server utilizing cloakbrowser (a stealth Chromium automation tool).

Features

  • Dual Search Engines: Search Google (default) or DuckDuckGo.
  • Stealth Interaction: Google searches simulate natural human behavior (typing speed, keyboard navigation, and viewport configurations) to completely bypass CAPTCHAs and bot blocks.
  • Self-Healing Fallback: Automatically switches to DuckDuckGo if Google blocks requests, ensuring 100% reliable results.
  • Zero API Keys: Free, local, and private scraping.

Quick Start (No Installation Needed)

You can run this server directly via npx in your MCP client configurations.

(On first execution, cloakbrowser will automatically download its stealth Chromium binary ~535 MB in the background).

1. Cursor Setup

  1. Register the MCP server in Settings -> Features -> MCP:

    • Name: cloak-search-mcp
    • Type: command
    • Command: npx -y cloak-search-mcp
  2. To route Cursor to your local LLM:

    • Go to Settings -> Models.
    • Under OpenAI API Key, enter a dummy key (e.g., sk-no-key-required).
    • Click Configure and set Override Base URL to:
      • Llama.cpp: http://localhost:8080/v1
      • Ollama: http://localhost:11434/v1
    • Add your local model name (e.g., default_model or llama3) and disable Cursor's default cloud models.

2. Copilot CLI Setup

  1. Set environment variables to route Copilot CLI to your local LLM:

    • PowerShell (Llama.cpp):
      $env:COPILOT_PROVIDER_BASE_URL="http://127.0.0.1:8080"
      $env:COPILOT_OFFLINE="true"
      $env:COPILOT_MODEL="default_model"
    • PowerShell (Ollama):
      $env:COPILOT_PROVIDER_BASE_URL="http://127.0.0.1:11434/v1"
      $env:COPILOT_OFFLINE="true"
      $env:COPILOT_MODEL="llama3" # Replace with your loaded Ollama model
    • Bash (Llama.cpp):
      export COPILOT_PROVIDER_BASE_URL="http://127.0.0.1:8080"
      export COPILOT_OFFLINE="true"
      export COPILOT_MODEL="default_model"
    • Bash (Ollama):
      export COPILOT_PROVIDER_BASE_URL="http://127.0.0.1:11434/v1"
      export COPILOT_OFFLINE="true"
      export COPILOT_MODEL="llama3" # Replace with your loaded Ollama model
  2. Register the MCP server with Copilot CLI:

    copilot mcp add cloak-search-mcp -- npx -y cloak-search-mcp

3. Claude CLI Setup

If running a local Claude CLI session against your local model, set the following environment variables:

  • PowerShell (Llama.cpp):
    $env:ANTHROPIC_BASE_URL="http://127.0.0.1:8080"
    $env:ANTHROPIC_AUTH_TOKEN="sk-no-key-required"
    $env:ANTHROPIC_MODEL="default_model"
  • PowerShell (Ollama):
    $env:ANTHROPIC_BASE_URL="http://127.0.0.1:11434/v1"
    $env:ANTHROPIC_AUTH_TOKEN="sk-no-key-required"
    $env:ANTHROPIC_MODEL="llama3" # Replace with your loaded Ollama model
  • Bash (Llama.cpp):
    export ANTHROPIC_BASE_URL="http://127.0.0.1:8080"
    export ANTHROPIC_AUTH_TOKEN="sk-no-key-required"
    export ANTHROPIC_MODEL="default_model"
  • Bash (Ollama):
    export ANTHROPIC_BASE_URL="http://127.0.0.1:11434/v1"
    export ANTHROPIC_AUTH_TOKEN="sk-no-key-required"
    export ANTHROPIC_MODEL="llama3" # Replace with your loaded Ollama model

Global Installation (Alternative)

If you prefer to install it globally on your machine:

npm install -g cloak-search-mcp

Then configure your MCP client to run:

  • Command: cloak-search-mcp

Local Development Setup

If you want to modify or run the code locally:

  1. Clone the repository.
  2. Install dependencies:
    npm install
  3. Run the server locally:
    node index.js

License

This project is licensed under the MIT License - see the LICENSE file for details.