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

search1api-mcp

v0.3.0

Published

A Model Context Protocol (MCP) server that provides search and crawl functionality using Search1API

Readme

Search1API MCP Server

中文文档

The official MCP server for Search1API — web search, news, crawling, and more in one API.

Get Your API Key

  1. Register at Search1API
  2. Get your API key from the dashboard

Quick Start (Remote MCP)

No installation required. Just configure your MCP client with the remote URL and your API key.

Authentication

Two methods are supported — use whichever your client supports:

| Method | Format | |--------|--------| | Authorization Header | Authorization: Bearer YOUR_SEARCH1API_KEY | | URL Query Parameter | https://mcp.search1api.com/mcp?apiKey=YOUR_SEARCH1API_KEY |

Claude Desktop

{
  "mcpServers": {
    "search1api": {
      "url": "https://mcp.search1api.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SEARCH1API_KEY"
      }
    }
  }
}

Claude.ai (Web)

Settings > Connectors > Add custom connector:

https://mcp.search1api.com/mcp?apiKey=YOUR_SEARCH1API_KEY

Cursor

{
  "mcpServers": {
    "search1api": {
      "url": "https://mcp.search1api.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SEARCH1API_KEY"
      }
    }
  }
}

VS Code

{
  "servers": {
    "search1api": {
      "type": "http",
      "url": "https://mcp.search1api.com/mcp",
      "headers": {
        "Authorization": "Bearer YOUR_SEARCH1API_KEY"
      }
    }
  }
}

Claude Code

claude mcp add --transport http search1api https://mcp.search1api.com/mcp \
  --header "Authorization: Bearer YOUR_SEARCH1API_KEY"

Windsurf

{
  "mcpServers": {
    "search1api": {
      "serverUrl": "https://mcp.search1api.com/mcp?apiKey=YOUR_SEARCH1API_KEY"
    }
  }
}

Local Mode (stdio)

If you prefer to run the server locally, use npx — no cloning required:

{
  "mcpServers": {
    "search1api": {
      "command": "npx",
      "args": ["-y", "search1api-mcp"],
      "env": {
        "SEARCH1API_KEY": "YOUR_SEARCH1API_KEY"
      }
    }
  }
}

Tools

search

Search the web using Search1API.

| Parameter | Required | Default | Description | |-----------|----------|---------|-------------| | query | Yes | - | Search query | | max_results | No | 10 | Number of results | | search_service | No | google | google, bing, duckduckgo, yahoo, x, reddit, github, youtube, arxiv, wechat, bilibili, imdb, wikipedia | | crawl_results | No | 0 | Number of results to crawl for full content | | include_sites | No | [] | Sites to include | | exclude_sites | No | [] | Sites to exclude | | time_range | No | - | day, month, year |

news

Search for news articles.

| Parameter | Required | Default | Description | |-----------|----------|---------|-------------| | query | Yes | - | Search query | | max_results | No | 10 | Number of results | | search_service | No | bing | google, bing, duckduckgo, yahoo, hackernews | | crawl_results | No | 0 | Number of results to crawl for full content | | include_sites | No | [] | Sites to include | | exclude_sites | No | [] | Sites to exclude | | time_range | No | - | day, month, year |

crawl

Extract content from a URL.

| Parameter | Required | Description | |-----------|----------|-------------| | url | Yes | URL to crawl |

sitemap

Get all related links from a URL.

| Parameter | Required | Description | |-----------|----------|-------------| | url | Yes | URL to get sitemap |

reasoning

Deep thinking and complex problem solving with DeepSeek R1.

| Parameter | Required | Description | |-----------|----------|-------------| | content | Yes | The question or problem |

trending

Get trending topics from popular platforms.

| Parameter | Required | Default | Description | |-----------|----------|---------|-------------| | search_service | Yes | - | github, hackernews | | max_results | No | 10 | Number of items |

Version History

  • v0.3.0: Remote MCP support via Streamable HTTP; per-session API key authentication
  • v0.2.0: Fallback .env support for LibreChat integration
  • v0.1.8: X (Twitter) and Reddit search services
  • v0.1.7: Trending tool for GitHub and Hacker News
  • v0.1.6: Wikipedia search service
  • v0.1.5: New search parameters and services (arxiv, wechat, bilibili, imdb)
  • v0.1.4: Reasoning tool with DeepSeek R1
  • v0.1.3: News search
  • v0.1.2: Sitemap
  • v0.1.1: Web crawling
  • v0.1.0: Initial release

License

MIT