// may the 4th be with you⚔️
search-web

Search1API

by fatwang2

Discover Search1API for web searches, news API, and newspaper API capabilities. Power content extraction and stay inform

Execute web searches, news queries, and content extraction.

github stars

167

0 commentsdiscussion

Both formats append explainx.ai attribution and the canonical URL for this MCP server listing.

Remote — zero setupMultiple authentication methodsIncludes agent skill training

best for

  • / AI assistants needing current web information
  • / Research and content gathering workflows
  • / News monitoring and analysis
  • / Web scraping and data extraction tasks

capabilities

  • / Execute web searches
  • / Query news articles
  • / Extract content from web pages
  • / Crawl websites for data
  • / Access real-time web information

what it does

Provides web search, news queries, and content extraction through the Search1API service. Connects AI assistants to real-time web information and crawling capabilities.

about

Search1API is a community-built MCP server published by fatwang2 that provides AI assistants with tools and capabilities via the Model Context Protocol. Discover Search1API for web searches, news API, and newspaper API capabilities. Power content extraction and stay inform It is categorized under search web.

how to install

You can install Search1API in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.

license

MIT

Search1API is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.

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:

MethodFormat
Authorization HeaderAuthorization: Bearer YOUR_SEARCH1API_KEY
URL Query Parameterhttps://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"
    }
  }
}

Agent Skill

This repo also includes an Agent Skill that teaches agents how to use Search1API effectively — with decision strategies (when to search vs. crawl, how to tune parameters for different intents), multi-step workflows, and constraints.

The skill works in two modes: it prefers MCP tools when available, and falls back to bundled shell scripts for agents that don't support MCP (e.g. OpenClaw).

npx skills add fatwang2/search1api-mcp

Even if you're already using the MCP server above, the skill adds a strategy layer that helps agents make smarter decisions — like adjusting max_results based on research depth, choosing the right search_service for a query, or running a multi-step search → crawl → synthesize workflow. See the skills/ directory for details.

Quick start — copy and send this to your Agent:

I want to use Search1API for web search and content retrieval. Install the skill (npx skills add fatwang2/search1api-mcp), help me complete the setup, and run a quick test to verify it works.

Update skills:

Update my installed skills to the latest version: npx skills update

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.

ParameterRequiredDefaultDescription
queryYes-Search query
max_resultsNo10Number of results
search_serviceNogooglegoogle, bing, duckduckgo, yahoo, x, reddit, github, youtube, arxiv, wechat, bilibili, imdb, wikipedia
crawl_resultsNo0Number of results to crawl for full content
include_sitesNo[]Sites to include
exclude_sitesNo[]Sites to exclude
time_rangeNo-day, month, year

news

Search for news articles.

ParameterRequiredDefaultDescription
queryYes-Search query
max_resultsNo10Number of results
search_serviceNobinggoogle, bing, duckduckgo, yahoo, hackernews
crawl_resultsNo0Number of results to crawl for full content
include_sitesNo[]Sites to include
exclude_sitesNo[]Sites to exclude
time_rangeNo-day, month, year

crawl

Extract content from a URL.

ParameterRequiredDescription
urlYesURL to crawl

sitemap

Get all related links from a URL.

ParameterRequiredDescription
urlYesURL to get sitemap

reasoning

Deep thinking and complex problem solving with DeepSeek R1.

ParameterRequiredDescription
contentYesThe question or problem

trending

Get trending topics from popular platforms.

ParameterRequiredDefaultDescription
search_serviceYes-github, hackernews
max_resultsNo10Number 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

FAQ

What is the Search1API MCP server?
Search1API is a Model Context Protocol (MCP) server profile on explainx.ai. MCP lets AI hosts (e.g. Claude Desktop, Cursor) call tools and resources through a standard interface; this page summarizes categories, install hints, and community ratings.
How do MCP servers relate to agent skills?
Skills are reusable instruction packages (often SKILL.md); MCP servers expose live capabilities. Teams frequently combine both—skills for workflows, MCP for APIs and data. See explainx.ai/skills and explainx.ai/mcp-servers for parallel directories.
How are reviews shown for Search1API?
This profile displays 30 aggregated ratings (sample rows for discoverability plus signed-in user reviews). Average score is about 4.6 out of 5—verify behavior in your own environment before production use.

Discussion

Product Hunt–style comments (not star reviews)
  • No comments yet — start the thread.
MCP server reviews

Ratings

4.630 reviews
  • Ama Johnson· Dec 24, 2024

    Search1API is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Rahul Santra· Nov 19, 2024

    Search1API is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.

  • Meera Harris· Nov 15, 2024

    We evaluated Search1API against two servers with overlapping tools; this profile had the clearer scope statement.

  • Pratham Ware· Oct 10, 2024

    Search1API has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.

  • Meera Rahman· Oct 6, 2024

    I recommend Search1API for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

  • Sakshi Patil· Sep 25, 2024

    We evaluated Search1API against two servers with overlapping tools; this profile had the clearer scope statement.

  • Arjun Anderson· Sep 13, 2024

    Strong directory entry: Search1API surfaces stars and publisher context so we could sanity-check maintenance before adopting.

  • Arjun White· Sep 1, 2024

    Search1API is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.

  • Arjun Thomas· Aug 20, 2024

    According to our notes, Search1API benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.

  • Chaitanya Patil· Aug 16, 2024

    I recommend Search1API for teams standardizing on MCP; the explainx.ai page compares cleanly with sibling servers.

showing 1-10 of 30

1 / 3