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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@vastxie/99ai-plugin

v0.1.0

Published

MCP Web Search Tool supporting parallel multi-engine search

Readme

99AI Plugin

A network search service based on Model Context Protocol (MCP) that supports parallel multi-engine search, providing efficient web information retrieval capabilities.

Features

  • Parallel Multi-Engine Search: Simultaneously retrieves search results from Bing, Baidu, Google, SouGou, and DuckDuckGo
  • Web Content Extraction: Quickly scrapes webpage content
  • Weather Queries: Looks up weather information for specified cities
  • Efficient Parallel Processing: Executes all search requests in parallel, significantly improving search speed

Installation

Global Installation

npm install -g @vastxie/99ai-plugin

Local Installation

npm install @vastxie/99ai-plugin

Usage

Run Directly with npx

No installation needed:

npx @vastxie/99ai-plugin

Run After Global Installation

99ai-plugin

Use with Claude Desktop

Add the server configuration in the Claude Desktop config file:

Mac OS: ~/Library/Application Support/Claude/claude_desktop_config.json
Windows: %APPDATA%/Claude/claude_desktop_config.json

{
  "mcpServers": {
    "99ai-plugin": {
      "command": "npx @vastxie/99ai-plugin"
    }
  }
}

Use with Other MCP-Compatible Clients

This tool can be used with any client that supports the MCP protocol. Usually requires configuring the path or command for the tool in the client.

Tool Descriptions

1. Keyword Search (search_keywords)

Search for keywords in parallel across multiple search engines and get comprehensive results.

Parameters:

  • query: Keywords or questions to search for

2. Web Content Extraction (fetch_web_content)

Extract content from a specified URL.

Parameters:

  • url: The URL of the webpage to extract content from
  • contentLimit: Maximum number of characters to extract, default is 5000

3. Weather Search (search_weather)

Query weather information for a specified city.

Parameters:

  • city: Name of the city to query weather for

Development

Environment Setup

# Install dependencies
npm install

# Build the project
npm run build

# Development mode (auto-rebuild)
npm run watch

Debugging

Since MCP servers communicate via stdio, debugging can be challenging. We recommend using the MCP Inspector:

npm run inspector

The Inspector will provide a URL to access debugging tools in your browser.

Publishing to NPM

If you want to publish your own version:

# Login to NPM
npm login

# Publish package (first time publishing a scoped package)
npm publish --access=public

# Subsequent updates
npm publish

License

MIT