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

@mseep/prospect-research-mcp

v0.1.0

Published

Model Context Protocol implementation for prospect research

Readme

Prospect Research MCP Server

smithery badge

A Model Context Protocol (MCP) server implementation focused on prospect research tools, deployed on Smithery Web infrastructure.

Features

  • Semantic Search: Contextual search that understands meaning and intent behind queries
  • Webpage Scraping: Extract and process content from multiple web pages
  • Batch Search Processing: Execute multiple search queries in parallel
  • Comprehensive Coverage: Combine different search approaches for thorough research

Tools

  • web-search

    • A semantic search engine (Tavily) that understands the contextual meaning and intent behind queries
    • Inputs:
      • query (string): The search query to look up
  • scrape-webpages

    • Scrape the provided web pages for detailed information
    • Inputs:
      • links (array): A list of URLs to scrape (optimally less than 10)
    • Processes content to remove images and returns combined content from provided URLs
  • batch-web-search

    • Traditional keyword-based search (Google via Search1API) that processes multiple queries simultaneously
    • Inputs:
      • queries (array): List of search queries to process in parallel (optimally less than 30)
    • Executes multiple distinct search queries in parallel

Prompts

  • simple-assist - A basic prompt for general queries
  • research - A prompt for detailed research questions
  • review-code - A prompt for code review

Configuration

Required API Keys

This server requires the following API keys:

  • TAVILY_API_KEY - For semantic web search functionality
  • JINA_API_KEY - For webpage scraping
  • SEARCH1API_KEY - For batch web search

These are configured in the Smithery Web environment for the deployed version.

Usage with Claude Desktop

Add this to your claude_desktop_config.json:

{
  "mcpServers": {
    "prospect-research": {
      "transport": "sse",
      "url": "https://smithery.ai/server/@jzhang17/prospect-research-mcp",
      "env": {
        "TAVILY_API_KEY": "YOUR_TAVILY_API_KEY",
        "JINA_API_KEY": "YOUR_JINA_API_KEY",
        "SEARCH1API_KEY": "YOUR_SEARCH1API_KEY"
      }
    }
  }
}

For Other MCP Clients

Configure your client to connect to the server using the SSE transport type and the Smithery-hosted URL.

Structure

  • /src/index.ts - Main server entrypoint
  • /src/tools/ - MCP tool implementations (web search, webpage scraping, batch search)
  • /src/prompts/ - MCP prompt implementations
  • /src/types/ - TypeScript type definitions

Deployment

This server is deployed to Smithery Web platform. To access the deployed server:

  1. Visit Smithery.ai
  2. The server is available at the URL provided by Smithery Web

References