Skip to main content
Glama
yokingma

OneSearch MCP Server

by yokingma

🚀 OneSearch MCP-Server: Websuche & Crawl & Scraper & Inhaltsaufbereitung

Eine Implementierung eines Model Context Protocol (MCP)-Servers, die sich für Websuche, lokale Browsersuche und Scraping-Funktionen mit agent-browser in mehrere Suchanbieter integriert.

Funktionen

  • Websuche, Scraping, Crawling und Vorverarbeitung von Inhalten von Websites.

  • Unterstützung mehrerer Suchmaschinen und Web-Scraper: SearXNG, Tavily, DuckDuckGo, Bing, Google, Zhipu (智谱), Exa, Bocha (博查) usw.

  • Lokale Websuche (Browsersuche), Unterstützung mehrerer Suchmaschinen: Bing, Google, Baidu, Sogou usw.

    • Verwendung von agent-browser für Browser-Automatisierung.

    • Kostenlos, keine API-Schlüssel erforderlich.

  • Aktivierte Tools: one_search, one_scrape, one_map, one_extract

Related MCP server: Firecrawl MCP Server

Migration von v1.1.0 und früher

Breaking Changes in v1.1.0:

  • Firecrawl entfernt: Die Firecrawl-Integration wurde zugunsten von agent-browser entfernt, das ähnliche Funktionen bietet, ohne externe API-Dienste zu erfordern.

  • Neue Browser-Anforderung: Sie müssen den Chromium-Browser installieren (siehe Abschnitt Voraussetzungen).

  • Umgebungsvariablen: FIRECRAWL_API_URL und FIRECRAWL_API_KEY werden nicht mehr verwendet.

Was hat sich geändert:

  • one_scrape und one_map verwenden jetzt agent-browser anstelle von Firecrawl

  • one_extract bereitet jetzt Seiteninhalte mit mehreren URLs für die nachgelagerte Analyse vor, anstatt eine integrierte LLM-Extraktion durchzuführen

  • Alle browserbasierten Vorgänge werden jetzt lokal abgewickelt, was für besseren Datenschutz sorgt und keine API-Kosten verursacht

Migrationsschritte:

  1. Chromium-Browser installieren (siehe Voraussetzungen)

  2. FIRECRAWL_API_URL und FIRECRAWL_API_KEY aus Ihren Umgebungsvariablen entfernen

  3. Auf die neueste Version aktualisieren: npm install -g one-search-mcp@latest

Voraussetzungen

Browser-Anforderung: Dieser Server verwendet agent-browser für Web-Scraping und lokale Suche, was einen Chromium-basierten Browser erfordert.

Gute Nachrichten: Der Server erkennt und verwendet automatisch Browser, die bereits auf Ihrem System installiert sind:

  • ✅ Google Chrome

  • ✅ Microsoft Edge

  • ✅ Chromium

  • ✅ Google Chrome Canary

Wenn Sie keinen dieser Browser installiert haben, können Sie:

# Option 1: Install Google Chrome (Recommended)
# Download from: https://www.google.com/chrome/

# Option 2: Install Microsoft Edge
# Download from: https://www.microsoft.com/edge

# Option 3: Install Chromium via agent-browser
npx agent-browser install

# Option 4: Install Chromium directly
# Download from: https://www.chromium.org/getting-involved/download-chromium/

Installation

Verwendung der Claude Code CLI (Empfohlen)

# Add to Claude Code with default settings (local search)
claude mcp add one-search-mcp -- npx -y one-search-mcp

# Add with custom search provider (e.g., SearXNG)
claude mcp add one-search-mcp -e SEARCH_PROVIDER=searxng -e SEARCH_API_URL=http://127.0.0.1:8080 -- npx -y one-search-mcp

# Add with Tavily API
claude mcp add one-search-mcp -e SEARCH_PROVIDER=tavily -e SEARCH_API_KEY=your_api_key -- npx -y one-search-mcp

Manuelle Installation

# Install globally (Optional)
npm install -g one-search-mcp

# Or run directly with npx
npx -y one-search-mcp

Verwendung von Docker

Das Docker-Image enthält alle Abhängigkeiten (Chromium-Browser) vorinstalliert, keine zusätzliche Einrichtung erforderlich.

Image abrufen:

# From GitHub Container Registry
docker pull ghcr.io/yokingma/one-search-mcp:latest

# Or from Docker Hub
docker pull zacma/one-search-mcp:latest

Konfiguration mit Claude Desktop:

{
  "mcpServers": {
    "one-search-mcp": {
      "command": "docker",
      "args": ["run", "-i", "--rm", "ghcr.io/yokingma/one-search-mcp:latest"],
      "env": {
        "SEARCH_PROVIDER": "local"
      }
    }
  }
}

Mit benutzerdefiniertem Suchanbieter:

{
  "mcpServers": {
    "one-search-mcp": {
      "command": "docker",
      "args": [
        "run", "-i", "--rm",
        "-e", "SEARCH_PROVIDER=tavily",
        "-e", "SEARCH_API_KEY=your_api_key",
        "ghcr.io/yokingma/one-search-mcp:latest"
      ]
    }
  }
}

Umgebungsvariablen

Suchmaschine:

  • SEARCH_PROVIDER (Optional): Der zu verwendende Suchanbieter, unterstützt searxng, duckduckgo, bing, tavily, google, zhipu, exa, bocha, local, Standard ist local.

  • SEARCH_API_URL (Optional): Die URL der SearxNG-API oder die Google Custom Search Engine ID für google.

  • SEARCH_API_KEY (Optional): Der API-Schlüssel für den Suchanbieter, erforderlich für tavily, bing, google, zhipu, exa, bocha.

// supported search providers
export type SearchProvider = 'searxng' | 'duckduckgo' | 'bing' | 'tavily' | 'google' | 'zhipu' | 'exa' | 'bocha' | 'local';

Konfiguration des Suchanbieters

Anbieter

API-Schlüssel erforderlich

API-URL erforderlich

Hinweise

local

Nein

Nein

Kostenlos, verwendet Browser-Automatisierung

duckduckgo

Nein

Nein

Kostenlos, kein API-Schlüssel erforderlich

searxng

Optional

Ja

Selbstgehostete Meta-Suchmaschine

bing

Ja

Nein

Bing Search API

tavily

Ja

Nein

Tavily API

google

Ja

Ja (Suchmaschinen-ID)

Google Custom Search

zhipu

Ja

Nein

智谱 AI

exa

Ja

Nein

Exa AI

bocha

Ja

Nein

博查 AI

Konfiguration für andere MCP-Clients

Claude Desktop

Fügen Sie dies zu Ihrer Claude Desktop-Konfigurationsdatei hinzu:

macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "one-search-mcp": {
      "command": "npx",
      "args": ["-y", "one-search-mcp"],
      "env": {
        "SEARCH_PROVIDER": "local"
      }
    }
  }
}

Cursor

Fügen Sie dies zu Ihrer mcp.json-Datei hinzu:

{
  "mcpServers": {
    "one-search-mcp": {
      "command": "npx",
      "args": ["-y", "one-search-mcp"],
      "env": {
        "SEARCH_PROVIDER": "local"
      }
    }
  }
}

Windsurf

Fügen Sie dies zu Ihrer ./codeium/windsurf/model_config.json-Datei hinzu:

{
  "mcpServers": {
    "one-search-mcp": {
      "command": "npx",
      "args": ["-y", "one-search-mcp"],
      "env": {
        "SEARCH_PROVIDER": "local"
      }
    }
  }
}

Selbsthosting von SearXNG (Optional)

Wenn Sie SearXNG als Suchanbieter verwenden möchten, können Sie es lokal mit Docker bereitstellen:

Voraussetzungen:

  • Docker installiert und ausgeführt (Version 20.10.0 oder höher)

  • Mindestens 4 GB RAM verfügbar

Schnellstart:

# Clone SearXNG Docker repository
git clone https://github.com/searxng/searxng-docker.git
cd searxng-docker

# Start SearXNG
docker compose up -d

Nach der Bereitstellung ist SearXNG standardmäßig unter http://127.0.0.1:8080 verfügbar.

Konfigurieren Sie OneSearch für die Verwendung von SearXNG:

# Set environment variables
export SEARCH_PROVIDER=searxng
export SEARCH_API_URL=http://127.0.0.1:8080

Weitere Details finden Sie in der offiziellen SearXNG Docker-Dokumentation.

Fehlerbehebung

Fehler: Browser nicht gefunden

Wenn Sie eine Fehlermeldung wie "Browser not found" sehen, konnte der Server keinen installierten Chromium-basierten Browser erkennen. Bitte installieren Sie einen der folgenden:

Oder installieren Sie ihn über agent-browser:

npx agent-browser install

Lizenz

MIT-Lizenz - siehe LICENSE-Datei für Details.

Available Tools

4 tools
one_extractA

Fetch and preprocess page content from one or more URLs. Returns cleaned text blocks that can be passed to downstream tools or models.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlsYesList of URLs to extract information from

TDQS

A3.5/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. 'Returns cleaned text blocks' hints at preprocessing but does not detail cleaning steps, error handling, or auth needs.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences, front-loaded with action, then output. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple tool (1 param, no output schema), description adequately covers purpose and output. Lacks details on cleaning specifics, error handling, or limits.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers parameter with 100% coverage. Description adds value by specifying preprocessing and output type ('cleaned text blocks'), going beyond schema's 'extract information'.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Description clearly states the verb 'fetch and preprocess' and the resource 'page content from URLs'. Differentiates from siblings: one_map, one_scrape, one_search.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit when-to-use or when-not-to-use guidance. Mentions downstream use but lacks context for choosing over siblings.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

one_mapA

Discover URLs from a starting point by loading a page in the browser and extracting links from its HTML.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesStarting URL for URL discovery
limitNoMaximum number of URLs to return
searchNoOptional search term to filter URLs
includeSubdomainsNoInclude URLs from subdomains in results

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the full burden of behavioral disclosure. It does disclose the core mechanism—loading a page in the browser and extracting links from its HTML—but it omits important details such as whether the crawl is recursive, whether subdomains are included by default, or any performance/rate implications.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that immediately conveys the main action and mechanism. It contains no filler, repetition, or unnecessary detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description is minimal but sufficient for a simple one-page link extractor. However, with no output schema, it leaves ambiguity about return format and whether discovery is recursive or limited to the initial page, which is important for a mapping tool with four parameters.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the description does not need to add much parameter detail. It simply reinforces 'starting point' for the url parameter and adds no new meaning beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific action: discover URLs from a starting point by loading a page in the browser and extracting HTML links. This clearly distinguishes it from sibling tools like one_extract, one_search, and one_scrape, which focus on other tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context that this tool is for mapping/discovering URLs from a starting page, which implies when it should be selected. However, it does not explicitly mention alternatives or state when not to use it, so it falls short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

one_scrapeA

Scrape a single webpage and return markdown, HTML, links, or a screenshot. Supports navigation timeout, TLS verification control, full-page screenshots, bounded pre-scrape actions, and advanced executeJavascript only when allowExecuteJavascript is true.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to scrape
actionsNoList of pre-scrape actions to run before content capture. Standard actions are bounded; executeJavascript requires allowExecuteJavascript: true.
formatsNoContent formats to extract (default: ['markdown'])
timeoutNoMaximum time in milliseconds to wait for the page to load
waitForNoTime in milliseconds to wait for dynamic content to load
skipTlsVerificationNoSkip TLS certificate verification
allowExecuteJavascriptNoMust be true when actions contain executeJavascript. Use only for advanced page-side scripting.

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It notably discloses support for navigation timeout, TLS verification control, full-page screenshots, bounded pre-scrape actions, and the gating of executeJavascript. It does not mention error behavior or return structure, but these are less critical for a scraping tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise at two sentences, front-loaded with the core purpose, and every clause adds value (outputs, timeout, TLS, screenshots, actions). There is no fluff or redundancy.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity (7 parameters, no output schema, no annotations), the description provides a good overview of capabilities but lacks details on return value structure, error handling, or pagination/navigation behavior. It is adequate but has clear gaps, especially regarding what the returned data looks like for each format.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Since schema description coverage is 100%, the baseline is 3. The description adds some context by mentioning 'bounded pre-scrape actions' and the executeJavascript requirement, which aligns with the actions and allowExecuteJavascript parameters. However, it does not add significant syntax or format details beyond what the schema already provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the tool's action ('Scrape a single webpage') and its outputs ('markdown, HTML, links, or a screenshot'), which distinguishes it from the sibling tools by focusing on single-page scraping. It is a specific verb+resource statement, though it does not explicitly contrast with siblings like 'one_extract'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for scraping a single webpage and mentions the prerequisite for executeJavascript ('only when allowExecuteJavascript is true'). However, it does not explicitly state when to choose this tool over alternatives such as one_extract, one_search, or one_map, nor does it provide exclusion criteria.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updatesv1.2.4
    • Changedone_map2 fields changed
      • removedInput schema / properties / ignoreSitemap
        Removed value: -{
        -  "description": "Skip sitemap.xml discovery and only use HTML links",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / sitemapOnly
        Removed value: -{
        -  "description": "Only use sitemap.xml for discovery, ignore HTML links",
        -  "type": "boolean"
        -}
    • Changedone_scrape11 fields changed
      • changedInput schema / properties / actions / description
        Previous value: -"List of actions to perform before scraping"New value: +"List of pre-scrape actions to run before content capture. Standard actions are bounded; executeJavascript requires allowExecuteJavascript: true."
      • changedInput schema / properties / actions / items / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "milliseconds": {
        -        "description": "Time to wait in milliseconds",
        -        "type": "number"
        -      },
        -      "type": {
        -        "const": "wait",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "milliseconds"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "selector": {
        -        "description": "CSS selector for the target element",
        -        "type": "string"
        -      },
        -      "type": {
        -        "const": "click",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "selector"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "fullPage": {
        -        "description": "Take full page screenshot",
        -        "type": "boolean"
        -      },
        -      "type": {
        -        "const": "screenshot",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "selector": {
        -        "description": "CSS selector for the target element",
        -        "type": "string"
        -      },
        -      "text": {
        -        "description": "Text to write",
        -        "type": "string"
        -      },
        -      "type": {
        -        "const": "write",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "selector",
        -      "text"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "key": {
        -        "description": "Key to press",
        -        "type": "string"
        -      },
        -      "type": {
        -        "const": "press",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "key"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "direction": {
        -        "description": "Scroll direction",
        -        "enum": [
        -          "up",
        -          "down"
        -        ],
        -        "type": "string"
        -      },
        -      "type": {
        -        "const": "scroll",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "direction"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "type": {
        -        "const": "scrape",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type"
        -    ],
        -    "type": "object"
        -  },
        -  {
        -    "additionalProperties": false,
        -    "properties": {
        -      "script": {
        -        "description": "JavaScript code to execute",
        -        "type": "string"
        -      },
        -      "type": {
        -        "const": "executeJavascript",
        -        "type": "string"
        -      }
        -    },
        -    "required": [
        -      "type",
        -      "script"
        -    ],
        -    "type": "object"
        -  }
        -]New value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "milliseconds": {
        +        "description": "Time to wait in milliseconds",
        +        "type": "number"
        +      },
        +      "type": {
        +        "const": "wait",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "milliseconds"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "selector": {
        +        "description": "CSS selector for the target element",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "click",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "selector"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "selector": {
        +        "description": "CSS selector for the target element",
        +        "type": "string"
        +      },
        +      "text": {
        +        "description": "Text to write",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "write",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "selector",
        +      "text"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "key": {
        +        "description": "Key to press",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "press",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "key"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "direction": {
        +        "description": "Scroll direction",
        +        "enum": [
        +          "up",
        +          "down"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "scroll",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "direction"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "script": {
        +        "description": "JavaScript code to execute",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "executeJavascript",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "script"
        +    ],
        +    "type": "object"
        +  }
        +]
      • addedInput schema / properties / allowExecuteJavascript
        Added value: +{
        +  "description": "Must be true when actions contain executeJavascript. Use only for advanced page-side scripting.",
        +  "type": "boolean"
        +}
      • removedInput schema / properties / excludeTags
        Removed value: -{
        -  "description": "HTML tags to exclude from extraction",
        -  "items": {
        -    "type": "string"
        -  },
        -  "type": "array"
        -}
      • removedInput schema / properties / extract
        Removed value: -{
        -  "additionalProperties": false,
        -  "description": "Configuration for structured data extraction",
        -  "properties": {
        -    "prompt": {
        -      "description": "User prompt for LLM extraction",
        -      "type": "string"
        -    },
        -    "schema": {
        -      "additionalProperties": {},
        -      "description": "Schema for structured data extraction",
        -      "type": "object"
        -    },
        -    "systemPrompt": {
        -      "description": "System prompt for LLM extraction",
        -      "type": "string"
        -    }
        -  },
        -  "type": "object"
        -}
      • changedInput schema / properties / formats / items / enum
        Previous value: -[
        -  "markdown",
        -  "html",
        -  "rawHtml",
        -  "screenshot",
        -  "links",
        -  "screenshot@fullPage",
        -  "extract"
        -]New value: +[
        +  "markdown",
        +  "html",
        +  "rawHtml",
        +  "screenshot",
        +  "links",
        +  "screenshot@fullPage"
        +]
      • removedInput schema / properties / includeTags
        Removed value: -{
        -  "description": "HTML tags to specifically include in extraction",
        -  "items": {
        -    "type": "string"
        -  },
        -  "type": "array"
        -}
      • removedInput schema / properties / location
        Removed value: -{
        -  "additionalProperties": false,
        -  "description": "Location settings for scraping",
        -  "properties": {
        -    "country": {
        -      "description": "Country code for geolocation",
        -      "type": "string"
        -    },
        -    "languages": {
        -      "description": "Language codes for content",
        -      "items": {
        -        "type": "string"
        -      },
        -      "type": "array"
        -    }
        -  },
        -  "type": "object"
        -}
      • removedInput schema / properties / mobile
        Removed value: -{
        -  "description": "Use mobile viewport",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / onlyMainContent
        Removed value: -{
        -  "description": "Extract only the main content, filtering out navigation, footers, etc.",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / removeBase64Images
        Removed value: -{
        -  "description": "Remove base64 encoded images from output",
        -  "type": "boolean"
        -}
  2. 4 tool updatesv1.2.1
    • Changedone_extract8 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • removedInput schema / properties / allowExternalLinks
        Removed value: -{
        -  "description": "Allow extraction from external links",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / enableWebSearch
        Removed value: -{
        -  "description": "Enable web search for additional context",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / includeSubdomains
        Removed value: -{
        -  "description": "Include subdomains in extraction",
        -  "type": "boolean"
        -}
      • removedInput schema / properties / prompt
        Removed value: -{
        -  "description": "Prompt for the LLM extraction",
        -  "type": "string"
        -}
      • removedInput schema / properties / schema
        Removed value: -{
        -  "description": "JSON schema for structured data extraction",
        -  "type": "object"
        -}
      • removedInput schema / properties / systemPrompt
        Removed value: -{
        -  "description": "System prompt for LLM extraction",
        -  "type": "string"
        -}
    • Changedone_map2 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
    • Changedone_scrape9 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
      • addedInput schema / properties / actions / items / anyOf
        Added value: +[
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "milliseconds": {
        +        "description": "Time to wait in milliseconds",
        +        "type": "number"
        +      },
        +      "type": {
        +        "const": "wait",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "milliseconds"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "selector": {
        +        "description": "CSS selector for the target element",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "click",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "selector"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "fullPage": {
        +        "description": "Take full page screenshot",
        +        "type": "boolean"
        +      },
        +      "type": {
        +        "const": "screenshot",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "selector": {
        +        "description": "CSS selector for the target element",
        +        "type": "string"
        +      },
        +      "text": {
        +        "description": "Text to write",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "write",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "selector",
        +      "text"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "key": {
        +        "description": "Key to press",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "press",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "key"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "direction": {
        +        "description": "Scroll direction",
        +        "enum": [
        +          "up",
        +          "down"
        +        ],
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "scroll",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "direction"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "type": {
        +        "const": "scrape",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type"
        +    ],
        +    "type": "object"
        +  },
        +  {
        +    "additionalProperties": false,
        +    "properties": {
        +      "script": {
        +        "description": "JavaScript code to execute",
        +        "type": "string"
        +      },
        +      "type": {
        +        "const": "executeJavascript",
        +        "type": "string"
        +      }
        +    },
        +    "required": [
        +      "type",
        +      "script"
        +    ],
        +    "type": "object"
        +  }
        +]
      • removedInput schema / properties / actions / items / properties
        Removed value: -{
        -  "direction": {
        -    "description": "Scroll direction",
        -    "enum": [
        -      "up",
        -      "down"
        -    ],
        -    "type": "string"
        -  },
        -  "fullPage": {
        -    "description": "Take full page screenshot",
        -    "type": "boolean"
        -  },
        -  "key": {
        -    "description": "Key to press (for press action)",
        -    "type": "string"
        -  },
        -  "milliseconds": {
        -    "description": "Time to wait in milliseconds (for wait action)",
        -    "type": "number"
        -  },
        -  "script": {
        -    "description": "JavaScript code to execute",
        -    "type": "string"
        -  },
        -  "selector": {
        -    "description": "CSS selector for the target element",
        -    "type": "string"
        -  },
        -  "text": {
        -    "description": "Text to write (for write action)",
        -    "type": "string"
        -  },
        -  "type": {
        -    "description": "Type of action to perform",
        -    "enum": [
        -      "wait",
        -      "click",
        -      "screenshot",
        -      "write",
        -      "press",
        -      "scroll",
        -      "scrape",
        -      "executeJavascript"
        -    ],
        -    "type": "string"
        -  }
        -}
      • removedInput schema / properties / actions / items / required
        Removed value: -[
        -  "type"
        -]
      • removedInput schema / properties / actions / items / type
        Removed value: -"object"
      • addedInput schema / properties / extract / additionalProperties
        Added value: +false
      • addedInput schema / properties / extract / properties / schema / additionalProperties
        Added value: +{}
      • addedInput schema / properties / location / additionalProperties
        Added value: +false
    • Changedone_search2 fields changed
      • addedInput schema / $schema
        Added value: +"http://json-schema.org/draft-07/schema#"
      • addedInput schema / additionalProperties
        Added value: +false
  3. 4 tool updates
    • First observedone_extract
    • First observedone_map
    • First observedone_scrape
    • First observedone_search

TDQS

A3.7/5.0

Scored across 4 tools

Disambiguation4/5

Each tool has a distinct core function: search returns SERP results, extract preprocesses multiple URLs, scrape handles single-page advanced operations, and map discovers links. There is minor overlap between extract and scrape for fetching page content, but their descriptions make the intended use cases clear.

Naming Consistency5/5

All tool names follow the consistent pattern 'one_' prefix followed by a lowercase action verb (search, extract, scrape, map), with underscores between words. No mixed conventions or camelCase.

Tool Count5/5

Four tools is well within the ideal range for a focused search/scraping server. Each tool covers a distinct aspect of web research, making the set feel appropriately scoped without being bloated.

Completeness4/5

The tool set covers the primary workflows: searching, extracting content, single-page scraping with advanced options, and link discovery. Minor gaps exist, such as no dedicated batch scraping tool, but the combined functionality handles most common use cases.

Maintenance

ActivitySlowing
ResponsivenessWithin a week

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    A Model Context Protocol server that enables web scraping, crawling, and content extraction capabilities through integration with Firecrawl.
    8
    27,437 npm
    2
    MIT