원클릭으로
web-search-task
Web search and content retrieval workflow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Web search and content retrieval workflow
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Local file search and content exploration workflow
Push notifications to user devices
Scheduled recurring task management
Task planning and execution tracking
Spawn sub-agent tasks for parallel execution
| name | web_search_task |
| description | Web search and content retrieval workflow |
| server_tools | mcp_web__search, mcp_web__fetch, mcp_filesystem__read |
| client_tools | null |
| depends_on | null |
You have mcp_web__search, mcp_web__fetch and mcp_filesystem__read tools for web research.
mcp_web__search(query="...") — returns snippets and URLs.
Search snippets are summaries, not full content. Never answer based on snippets alone.
mcp_web__fetch(url="...") — fetches the page and saves full content to a session_file.
Call fetch on the top 1–2 URLs from search results.
mcp_filesystem__read(path="<session_file>") — read the saved content.
The fetch result includes a session_file path. Use read to access the actual content.
mcp_web__search(query, max_results?, search_depth?, country?)
Search the web and return snippets with URLs.
query: search query string (required)max_results: number of results, 1–20 (default: 1). Increase for broad research.search_depth: "basic" (default) or "advanced" for deeper search.country: ISO code (e.g. "KR") or country name for geo-relevant results.mcp_web__fetch(url, max_length?, start_index?, extract_mode?)
Fetch a URL and save full content to a session_file. Returns a short snippet inline.
url: the URL to fetch (required)max_length: max characters to extract (default: 5000).start_index: character offset to start reading from (default: 0). Use for pagination on long pages.extract_mode: "markdown" (default) or "text".mcp_filesystem__read(path, offset?, limit?)
Read the saved session_file content.
path: file path (required)offset: start line, 1-indexed.limit: max lines to read.mcp_web__fetch before answering. Search snippets are not sufficient.mcp_filesystem__read on the session_file. Fetch saves content to a file and does not return it inline.mcp_web__search calls in parallel with diverse keywords.mcp_web__fetch in parallel on different URLs in a single turn.mcp_filesystem__read in parallel in a single turn.