web-search-duckduckgo
If you are the rightful owner of web-search-duckduckgo and would like to certify it and/or have it hosted online, please leave a comment on the right or send an email to henry@mcpreview.com.
The DuckDuckGo Web Search MCP Server allows users to perform web searches using DuckDuckGo and optionally fetch and summarize content from the URLs found.
DuckDuckGo Web Search MCP Server
This project provides an MCP (Model Context Protocol) server that allows you to search the web using the DuckDuckGo search engine and optionally fetch and summarize the content of the found URLs.
Features
- Web Search: Search the web using DuckDuckGo.
- Result Extraction: Extracts titles, URLs, and snippets from search results.
- Content Fetching (Optional): Fetches the content of the URLs found in the search results and converts it to markdown format using jina api.
- Parallel Fetching: Fetches multiple URLs concurrently for faster processing.
- Error Handling: Gracefully handles timeouts and other potential errors during search and fetching.
- Configurable: Allows you to set the maximum number of search results to return.
- Jina API: using jina api to convert html to markdown.
- MCP Compliant: This server is designed to be used with any MCP-compatible client.
Usage
-
Prerequisites:
uvx
package manager
-
Claude Desktop Configuration
- If you are using Claude Desktop, you can add the server to the
claude_desktop_config.json
file.
{ "mcpServers": { "web-search-duckduckgo": { "command": "uvx", "args": [ "--from", "git+https://github.com/kouui/web-search-duckduckgo.git@main", "main.py" ] } } }
the above configuration is not working, you might need to clone the repository to local pc and use the following configuration
{ "mcpServers": { "web-search-duckduckgo": { "command": "uv", "args": [ "--directory", "/path/to/web-search-duckduckgo", "run", "main.py" ] } } }
- If you are using Claude Desktop, you can add the server to the
-
Tool
-
In your MCP client (e.g., Claude), you can now use the following tools:
-
search_and_fetch
: Search the web and fetch the content of the URLs.query
: The search query string.limit
: The maximum number of results to return (default: 3, maximum: 10).
-
fetch
: Fetch the content of a specific URL.url
: The URL to fetch.
-
License
This project is licensed under the MIT License. (Add a license file if you want to specify a license).
Related MCP Servers
View all browser_automation servers →Fetch
by modelcontextprotocol
A Model Context Protocol server that provides web content fetching capabilities, enabling LLMs to retrieve and process content from web pages.
markdownify-mcp
by zcaceres
Markdownify is a Model Context Protocol (MCP) server that converts various file types and web content to Markdown format.
deepwiki-mcp
by regenrek
This is an unofficial Deepwiki MCP Server that processes Deepwiki URLs, crawls pages, converts them to Markdown, and returns documents or lists by page.
mcp-playwright
by executeautomation
A Model Context Protocol server that provides browser automation capabilities using Playwright.
fetch-mcp
by zcaceres
This MCP server provides functionality to fetch web content in various formats, including HTML, JSON, plain text, and Markdown.
web-eval-agent
by Operative-Sh
operative.sh's MCP Server is a tool for autonomous debugging of web applications directly from your code editor.
cursor-talk-to-figma-mcp
by sonnylazuardi
This project implements a Model Context Protocol (MCP) integration between Cursor AI and Figma, allowing Cursor to communicate with Figma for reading designs and modifying them programmatically.