linkup-search
Installation
SKILL.md
Linkup Search
Linkup is a web search API for agents: it turns a natural-language instruction into retrieval actions (web search, scraping, LinkedIn, and more) and returns accurate, cited, real-time results.
A Linkup query is an instruction to a retrieval system, not a question to answer. Optimize for what to find and where, then do the synthesis yourself.
How to call it
- If the
linkup-searchMCP tool is available, use it: pass a natural-language query and adepth. - Otherwise — or when you need structured JSON output, domain filters (
includeDomains/excludeDomains), or date filters (fromDate/toDate) — call the REST Search API directly. RequiresLINKUP_API_KEY:
curl -sS -X POST "https://api.linkup.so/v1/search" \
-H "Authorization: Bearer $LINKUP_API_KEY" -H "Content-Type: application/json" \
-d '{"q":"...","depth":"standard","outputType":"searchResults"}'