linkup-fetch
Installation
SKILL.md
Linkup Fetch
When you already have the exact URL, use Fetch instead of search. It is faster and cheaper, and returns the page as clean Markdown (with JavaScript rendering and optional image extraction).
How to call it
- If the
linkup-fetchMCP tool is available, pass it the URL. - Otherwise call the REST API directly. Requires
LINKUP_API_KEY:
curl -sS -X POST "https://api.linkup.so/v1/fetch" \
-H "Authorization: Bearer $LINKUP_API_KEY" -H "Content-Type: application/json" \
-d '{"url":"https://example.com/pricing","renderJs":true}'
Default JavaScript rendering to on — many sites load content client-side, and the small latency cost is almost always worth the reliability. Turn it off only when speed matters more on a known-static page.