# @fangqian616/dsh-bing-search [中文](README.md) · [English](README.en.md) A DeepSeek Harness plugin that registers a **`bing_search`** model tool for zero-dependency local web search — **no API key, no firecrawl, no signup**. It hits Bing's HTML directly from the host and parses title/url/snippet results. Use it when `web_search` fails with 403 (firecrawl keyless rejected) or no search API key is configured. ## Install ```bash dsh plugin --profile web add @fangqian616/dsh-bing-search # restart dsh ``` The tool then surfaces as `bing_search` (callable by the model). ## Usage (as a model tool) ``` bing_search(query: "your query terms", limit?: 10) ``` Returns `[{ title, url, snippet }]`. ## How it works - Fetches `https://www.bing.com/search?q=...` through DSH's `web` service (`ctx.web.fetch`). - Regex-parses `