Sandbox
@pinkpixel-dev/web-scout-mcp

MCP server for web search and content extraction

Web Scout MCP adds two web tools to an MCP environment: DuckDuckGo search and webpage text extraction. It returns search results with titles, URLs, and snippets, and can fetch one or more URLs and strip out extra page clutter.

133 starsβ€’16 forksβ€’JavaScriptβ€’Updated 1mo ago
Who it's for

Builders who want their agent to look up web results and read page content without leaving the chat.

What it delivers

You can search the web and extract page text from inside your agent workflow instead of switching to a browser.

What it does

DuckDuckGo search

Runs web searches with a query and returns structured results with titles, URLs, and snippets.

URL content extraction

Fetches one URL or a list of URLs and extracts readable page text.

Parallel URL processing

Handles multiple URLs at once for faster collection work.

Memory optimization

Uses memory controls to reduce crashes during heavier runs.

Rate limiting

Throttles requests to reduce the chance of blocks.

Error handling

Catches failures so the server keeps working more reliably.

How to get it

  1. 1To install Web Scout for Claude Desktop automatically via Smithery
    npx -y @smithery/cli install @pinkpixel-dev/web-scout-mcp --client claude
  2. 2Run
    npm install -g @pinkpixel/web-scout-mcp
  3. 3Run
    npm install @pinkpixel/web-scout-mcp
  4. 4After installing globally, run
    web-scout-mcp

README

Web Scout MCP Logo

Web Scout MCP Server

npm version License Node.js Version Smithery Badge

web-scout-mcp MCP server MseeP.ai Security Assessment Badge

An MCP server for web search using DuckDuckGo and content extraction, with support for multiple URLs and memory optimizations.

✨ Features

  • πŸ” DuckDuckGo Search: Fast and privacy-focused web search capability
  • πŸ“„ Content Extraction: Clean, readable text extraction from web pages
  • πŸš€ Parallel Processing: Support for extracting content from multiple URLs simultaneously
  • πŸ’Ύ Memory Optimization: Smart memory management to prevent application crashes
  • ⏱️ Rate Limiting: Intelligent request throttling to avoid API blocks
  • πŸ›‘οΈ Error Handling: Robust error handling for reliable operation

πŸ“¦ Installation

Installing via Smithery

To install Web Scout for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @pinkpixel-dev/web-scout-mcp --client claude

Global Installation

npm install -g @pinkpixel/web-scout-mcp

Local Installation

npm install @pinkpixel/web-scout-mcp

πŸš€ Usage

Command Line

After installing globally, run:

web-scout-mcp

With MCP Clients

Add this to your MCP client's config.json (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "web-scout": {
      "command": "npx",
      "args": [
        "-y",
        "@pinkpixel/web-scout-mcp@latest"
      ]
    }
  }
}

Environment Variables

Set the WEB_SCOUT_DISABLE_AUTOSTART=1 environment variable when embedding the package and calling createServer() yourself. By default running the published entrypoint (for example node dist/index.js or npx @pinkpixel/web-scout-mcp) automatically bootstraps the stdio transport.

🧰 Tools

The server provides the following MCP tools:

πŸ” DuckDuckGoWebSearch

Initiates a web search query using the DuckDuckGo search engine and returns a well-structured list of findings.

Input:

  • query (string): The search query string
  • maxResults (number, optional): Maximum number of results to return (default: 10)

Example:

{
  "query": "latest advancements in AI",
  "maxResults": 5
}

Output: A formatted list of search results with titles, URLs, and snippets.

πŸ“„ UrlContentExtractor

Fetches and extracts clean, readable content from web pages by removing unnecessary elements like scripts, styles, and navigation.

Input:

  • url: Either a single URL string or an array of URL strings

Example (single URL):

{
  "url": "https://example.com/article"
}

Example (multiple URLs):

{
  "url": [
    "https://example.com/article1",
    "https://example.com/article2"
  ]
}

Output: Extracted text content from the specified URL(s).

πŸ› οΈ Development

# Clone the repository
git clone https://github.com/pinkpixel-dev/web-scout-mcp.git
cd web-scout-mcp

# Install dependencies
npm install

# Build
npm run build

# Run
npm start

πŸ“š Documentation

For more detailed information about the project, check out these resources:

πŸ“‹ Requirements

  • Node.js >= 18.0.0
  • npm or yarn

πŸ“„ License

This project is licensed under the Apache 2.0 License.

Made with ❀️ by Pink Pixel
✨ Dream it, Pixel it ✨

Files in the repo

Repository payloadβ€’18 top-level entries
  • .smithery
  • assets
  • src
  • .gitignore
  • CHANGELOG.md
  • CONTRIBUTING.md
  • Dockerfile
  • glama.json
  • LICENSE
  • manifest.json
  • package-lock.json
  • package.json
  • README.md
  • smithery.config.js
  • smithery.txt
  • smithery.yaml
  • tsconfig.json
  • web-scout-mcp.mcpb

Discussion (0)

Ask about usage, or say what you built with it

Sign in to join the discussion.

No comments yet. Be the first to say what this is good for.

More connectors

Real-time global intelligence dashboard. AI-powered news aggregation, geopolitical monitoring, and infrastructure tracking in a unified situational awareness interface

86k

High-performance code intelligence MCP server. Indexes codebases into a persistent knowledge graph β€” average repo in milliseconds. 158 languages, sub-ms queries, 99% fewer tokens. Single static binary, zero dependencies.

43k

Universal provider proxy for OpenAI Codex & Claude Code β€” use any LLM (Claude, Gemini, Grok, DeepSeek, Ollama…) with Codex CLI, App, SDK, and Claude Code

14k
okf-memory/
okf-agent-memory

Git-native persistent memory for AI coding agents. Implements Google OKF v0.2 with sub-300Β΅s in-memory BM25 search, embedded MCP server, and progressive disclosure. Slashes token bloat by 80% with zero external databases or dependencies. Built in pure Go.

547
tirth8205/
code-review-graph

Local-first code intelligence graph for MCP and CLI. Builds a persistent map of your codebase so AI coding tools read only what matters, with benchmarked context reductions on reviews and large-repo workflows.

31k
2akouwu/
reverify

Stop your AI from making things up β€” it proposes, deterministic tools decide, every claim checked against ground truth with evidence. Grounded facts and context survive resets. Reverse engineering is the proving ground. MCP server + CLI.

1.1k