# 1753 Instructions 3a431a0e

> Web Search MCP Server

- Skill: `tools-only/1753-instructions-3a431a0e` (Agent Skill, multi-file: 3 files)
- Install (CLI): `npx skillmds@latest add tools-only/1753-instructions-3a431a0e`
- Raw SKILL.md: https://api.skillmd.com/api/skills/tools-only/1753-instructions-3a431a0e/raw
- Safety review: pending
- Works with: Claude Code, Claude.ai, OpenAI Codex
- Category: AI & ML
- Author: tools-only (https://skillmd.com/u/tools-only)
- Updated: 2026-09-22
- Page: https://skillmd.com/skills/tools-only/1753-instructions-3a431a0e

---

# Web Search MCP Server

基于 DuckDuckGo 的网络搜索服务，无需 API Key。

## 可用工具

### web_search - 网页搜索

搜索网页，返回标题、链接和摘要。

**参数**:
- `query` (必填): 搜索关键词
- `max_results`: 结果数量，默认 5，最大 20
- `region`: 地区代码
  - `wt-wt`: 全球（默认）
  - `cn-zh`: 中国
  - `us-en`: 美国
- `safesearch`: 安全搜索 (`on`, `moderate`, `off`)

**示例**:
```json
{"query": "Python 异步编程教程", "max_results": 5, "region": "cn-zh"}
```

### news_search - 新闻搜索

搜索最新新闻，返回标题、来源、日期、链接和摘要。

**参数**:
- `query` (必填): 搜索关键词
- `max_results`: 结果数量，默认 5，最大 20
- `timelimit`: 时间范围
  - `d`: 最近一天
  - `w`: 最近一周
  - `m`: 最近一个月

**示例**:
```json
{"query": "AI 人工智能", "max_results": 5, "timelimit": "w"}
```

## 使用建议

1. **一般信息查询**: 使用 `web_search`
2. **时效性信息**: 使用 `news_search`
3. **中文搜索**: 设置 `region: "cn-zh"` 获得更好的中文结果

