SOC 직업 분류 기준
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
직접 명령은 검토 Prompt를 거치지 않습니다. 실행하기 전에 소스를 확인하세요.
npx skills add https://github.com/caoronglin/copaw-skills --skill mcp명령은 한 줄로 유지됩니다. 복사하기 전에 가로로 스크롤해 전체 내용을 확인하세요.
로컬 사본을 원하시나요? SkillsMP에서 현재 제공할 수 있는 파일을 다운로드하세요.
SKILL.md 표시 중
| name | MCP 阿里云 |
| description | 阿里云DashScope集成技能,整合网页搜索和网页解析。中文搜索优化,一站式信息获取。 |
| triggers | ["网页搜索","解析网页","搜索网页","中文搜索","抓取网页"] |
| mcp | {"type":"remote","urls":{"search":"https://dashscope.aliyuncs.com/api/v1/mcps/WebSearch/mcp","parse":"https://dashscope.aliyuncs.com/api/v1/mcps/WebParser/sse"}} |
整合阿里云网页搜索和网页解析,中文优化,一站式信息获取。
| 功能 | 说明 |
|---|---|
| 网页搜索 | 实时搜索,中文优化 |
| 网页解析 | 提取正文,过滤广告 |
| 新闻搜索 | 最新资讯,时间过滤 |
| 结构化提取 | JSON/Markdown输出 |
参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| query | string | ✅ | 搜索关键词 |
| search_type | string | ❌ | general/news |
| max_results | int | ❌ | 结果数量,默认10 |
| time_range | string | ❌ | day/week/month/year |
示例:
{
"query": "2026年人工智能最新进展",
"search_type": "news",
"time_range": "week"
}
返回:
参数:
| 参数 | 类型 | 必填 | 说明 |
|---|---|---|---|
| url | string | ✅ | 网页URL |
| output_format | string | ❌ | markdown/json |
| extract_links | bool | ❌ | 提取链接,默认true |
| extract_images | bool | ❌ | 提取图片,默认false |
示例:
{
"url": "https://example.com/article",
"output_format": "markdown"
}
返回:
# 先搜索
results = web_search("量子计算最新研究", search_type="news")
# 再解析
content = parse_webpage(results[0]["url"])
web_search("科技新闻", search_type="news", time_range="day")
parse_webpage(url, output_format="json")
| 参数 | 说明 | 适用场景 |
|---|---|---|
| day | 最近24小时 | 突发新闻 |
| week | 最近一周 | 近期动态 |
| month | 最近一月 | 月度总结 |
| year | 最近一年 | 长期趋势 |
{
"mcpServers": {
"aliyun": {
"url": "https://dashscope.aliyuncs.com/api/v1/mcps/WebSearch/mcp",
"headers": {"Authorization": "Bearer YOUR_API_KEY"}
}
}
}
阿里云统一技能 v1.0 | 搜索·解析