Skip to main content
Glama
qwang07

Duck Duck MCP

by qwang07

Duck Duck MCP

一个基于 DuckDuckGo 搜索引擎的 Model Context Protocol (MCP) 服务器实现。

功能特性

  • 使用 DuckDuckGo 进行网络搜索

  • 支持自定义搜索结果数量(默认 50 条)

  • 支持区域设置(默认 zh-cn)

  • 支持安全搜索级别设置(OFF/MODERATE/STRICT)

  • 提供结构化的搜索结果,包含元数据

  • 智能内容分类(文档/文章/社交媒体)

  • 自动语言检测

  • 主题标签识别

Related MCP server: duckduckgo-mcp

安装

安装通过 Smithery

通过 Smithery 将 DuckDuckGo 搜索自动安装到 Claude 桌面端:

npx -y @smithery/cli install duck-duck-mcp --client claude

不需要安装,可以直接通过 npx 运行:

npx -y @smithery/cli install duck-duck-mcp --client claude

使用方法

这是一个 MCP 服务器实现,主要用于与支持 MCP 协议的 AI 客户端(如 Claude)集成。

启动服务器:

# 使用 npx(推荐)
npx duck-duck-mcp

# 或者如果已经全局安装
mcp-server-search

搜索参数示例:

{
  "query": "搜索关键词",
  "options": {
    "region": "zh-cn",
    "safeSearch": "MODERATE",
    "numResults": 50
  }
}

返回结果格式:

{
  "type": "search_results",
  "data": [
    {
      "title": "标题",
      "url": "网址",
      "description": "描述",
      "metadata": {
        "type": "article|documentation|social|other",
        "source": "域名"
      }
    }
  ],
  "metadata": {
    "query": "搜索关键词",
    "timestamp": "时间戳",
    "resultCount": 50,
    "searchContext": {
      "region": "zh-cn",
      "safeSearch": "MODERATE"
    },
    "queryAnalysis": {
      "language": "zh-cn|en",
      "topics": ["technology", "documentation"]
    }
  }
}

License

MIT

Available Tools

1 tool

Tool Schema Changelog

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

  1. 1 tool update
    • First observedsearch

TDQS

B3/5.0

Scored across 1 tool

Disambiguation5/5

With only one tool, there is no possibility of confusion or overlap between tools, making disambiguation perfect.

Naming Consistency5/5

A single tool named 'search' follows a clear and consistent verb-based naming pattern, with no inconsistencies to evaluate.

Tool Count2/5

One tool is too few for a web search server, as it lacks complementary functions like filtering results, getting details, or handling different search types, making the scope feel incomplete.

Completeness2/5

The tool surface is severely incomplete for a web search domain; it only provides basic search without options for advanced queries, result pagination, or accessing specific content types, leading to significant gaps in functionality.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    A
    maintenance
    A privacy-friendly MCP server that enables web searches and URL content extraction using DuckDuckGo, allowing AI assistants to access real-time web information without API keys.
    1
    561
    42
    Apache 2.0
  • A
    license
    Not graded
    quality
    C
    maintenance
    A MCP server for DuckDuckGo HTML search. Unlike other DuckDuckGo MCP servers, this one isn't just AI slop.
    ISC
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server for internet search via direct Google and DuckDuckGo HTML scraping with AI-powered result normalization and optional summarization, requiring no API keys for search.
    MIT