drio
Open app

Search1API

Source

One API for Search, Crawling, and Sitemaps

Catalog onlyCatalog onlySTDIO

Overview

Search1API is an API that provides integrated functionalities for web search, crawling, and sitemap extraction.

To use Search1API, first register on the website to get your API key. Then, you can utilize various tools to perform searches, crawl web pages, or extract sitemaps by sending requests with the required parameters.

  • Comprehensive web search functionality - Ability to search news articles - Extracting content from specific URLs - Generating sitemaps from provided URLs - Seamless integration with Claude Desktop
  1. Searching for information relevant to a specific topic on the web.
  2. Extracting news articles for real-time updates.
  3. Crawling a target URL to gather content for analysis.
  4. Generating a sitemap to understand web structure for SEO purposes.

Add to your AI client

Use these steps to connect Search1API in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.

Cursor

Add this to your .cursor/mcp.json file in your project root, then restart Cursor.

.cursor/mcp.json

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

Claude Desktop

Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.

~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)

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

Claude Code

Add this to your project's .mcp.json file. Claude Code will detect it automatically.

.mcp.json (project root)

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

VS Code (Copilot)

Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.

.vscode/mcp.json

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

Windsurf

Add this to your Windsurf MCP config file, then restart Windsurf.

~/.codeium/windsurf/mcp_config.json

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

Cline

Open Cline settings, navigate to MCP Servers, and add this server configuration.

Cline MCP Settings (via UI)

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

FAQ

How do I obtain an API key for Search1API?

You can obtain an API key by registering on the Search1API website and selecting a pricing plan.

Is there a free trial available?

Yes! Search1API offers a pricing plan starting from $0.99, which allows users to explore its functionalities.

What programming languages can I use with Search1API?

Search1API can be accessed through any programming language that supports HTTP requests, making it versatile for various applications.