원클릭으로
read-url
Fetch web content as clean Markdown using Exa, Jina Reader, and WebFetch. Choose the right tool for each scenario.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
메뉴
Fetch web content as clean Markdown using Exa, Jina Reader, and WebFetch. Choose the right tool for each scenario.
Codex 또는 Claude로 설치 이 Prompt를 복사해 Codex, Claude 또는 다른 어시스턴트에 붙여 넣으면 Skill 페이지를 검토하고 설치를 진행할 수 있습니다.
SOC 직업 분류 기준
Turn ambiguous requirements into structured spec documents. Surface assumptions → interview → spec → human review → execute in fresh session. Spec is a contract, not a suggestion.
Pre-merge review. Reviews the diff, auto-fixes safe issues, flags destructive commands, runs verification. Evidence before assertions.
Execute an implementation plan with verification at every step. Tests first, then code. Stop on failures — never stack problems.
Systematic debugging. Reproduce → isolate → root cause → fix → verify. Root cause confirmed before any fix is applied. Never treat symptoms.
Build frontend interfaces with a committed aesthetic direction. Screenshot-based self-verification loop. Not generic defaults.
Read-only codebase exploration. Maps structure, patterns, and boundaries before any code is written. Use subagents to isolate context.
| name | read-url |
| description | Fetch web content as clean Markdown using Exa, Jina Reader, and WebFetch. Choose the right tool for each scenario. |
Turn any URL into readable Markdown. Three tools, pick the right one.
mcp__Exa__crawling_exaPrimary tool. Clean Markdown extraction with configurable maxCharacters.
mcp__Exa__crawling_exa
urls: ["https://example.com/article"]
maxCharacters: 6000 # default 3000, adjust as needed
Also use mcp__Exa__web_search_exa for search-first-then-fetch workflows.
r.jina.aiFallback when Exa can't reach the content (paywalled, JS-heavy, blocked).
https://r.jina.ai/YOUR_URL
Use with WebFetch:
WebFetch
url: "https://r.jina.ai/https://example.com/article"
prompt: "extract the main content..."
s.jina.aiFor searching when you need to find pages first, then read them.
https://s.jina.ai/YOUR_SEARCH_QUERY
Built-in fallback. Use when Exa and Jina both fail, or for quick single-page fetches.
WebFetch
url: "https://example.com"
prompt: "extract key information about..."
Can Exa reach it?
YES → mcp__Exa__crawling_exa
NO → Is it JS-heavy / paywalled / blocked?
YES → https://r.jina.ai/URL via WebFetch
NO → WebFetch directly
Need to search first?
→ mcp__Exa__web_search_exa (primary)
→ https://s.jina.ai/QUERY (fallback)
gh CLI for GitHub)gh CLIRead toolr.jina.ai for reading, s.jina.ai for searchingmcp__Exa__crawling_exa, mcp__Exa__web_search_exa