Documentation Index
Fetch the complete documentation index at: https://budecosystem-b7b14df4.mintlify.app/llms.txt
Use this file to discover all available pages before exploring further.
Overview
Web Search lets an agent issue free-text queries against the public web and receive a list of results — title, URL, and a short snippet — that the LLM can reason over or cite. The tool is backed by DuckDuckGo so no API key or per-project quota setup is required.When to Use It
- The model needs fresh information that may not be in its training data — recent news, current pricing, latest releases.
- You want the model to discover candidate sources before fetching them with Web Fetch.
- You need lightweight grounding without standing up a retrieval pipeline.
Configuration
The tool exposes a single optional field on the prompt version.| Field | Type | Default | Description |
|---|---|---|---|
max_results | integer | null | Maximum number of search results to return. null returns the first batch only. |
max_results only when you need broader coverage and your downstream prompt can handle the larger context.
How Results Are Returned
Each result is a small object with three fields:title— page title as indexedhref— destination URLbody— short snippet (typically 1-3 sentences)
Operational Considerations
- No caching — every tool call hits DuckDuckGo. Repeated identical queries inside the same session will issue repeated network requests.
- No authentication — results reflect the public web view; logged-in or paywalled content is not accessible.
- Latency — typical responses complete in 1-3 seconds depending on query and upstream load.
- Result quality — DuckDuckGo’s index lags Google for some long-tail queries. Pair with Web Fetch for follow-up reading on candidate URLs.
- Content trust — treat returned snippets as untrusted user-supplied data; downstream prompts should not interpret them as instructions.
Next Steps
Web Fetch
Follow up on a search result by fetching the full page as markdown
Native Tools Overview
How native tools differ from MCP connectors