بنقرة واحدة
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.