drio
Open app

mcp-edge-search

Source

A Model Context Protocol server that enables web search capabilities for MCP clients like Claude Desktop

Catalog onlyCatalog onlySTDIO

Overview

mcp-edge-search is a Model Context Protocol server that provides web search capabilities for MCP clients, such as Claude Desktop.

To use mcp-edge-search, integrate it with your MCP client and utilize its web search functionalities to retrieve information from the internet.

  • Enables web search for MCP clients - Supports integration with various applications - Provides a structured way to access web data
  1. Enhancing search capabilities in MCP-based applications.
  2. Allowing users to retrieve real-time information from the web.
  3. Supporting research and data retrieval tasks in various domains.

Add to your AI client

Use these steps to connect mcp-edge-search 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": {
    "mcp-edge-search-intel420x": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edge-search-intel420x"
      ]
    }
  }
}

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": {
    "mcp-edge-search-intel420x": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edge-search-intel420x"
      ]
    }
  }
}

Claude Code

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

.mcp.json (project root)

{
  "mcpServers": {
    "mcp-edge-search-intel420x": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edge-search-intel420x"
      ]
    }
  }
}

VS Code (Copilot)

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

.vscode/mcp.json

{
  "servers": {
    "mcp-edge-search-intel420x": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edge-search-intel420x"
      ]
    }
  }
}

Windsurf

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

~/.codeium/windsurf/mcp_config.json

{
  "mcpServers": {
    "mcp-edge-search-intel420x": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edge-search-intel420x"
      ]
    }
  }
}

Cline

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

Cline MCP Settings (via UI)

{
  "mcpServers": {
    "mcp-edge-search-intel420x": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-mcp-edge-search-intel420x"
      ]
    }
  }
}