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-search MCP tool is available, use it: pass a natural-language query and a depth.
  • Otherwise — or when you need structured JSON output, domain filters (includeDomains/excludeDomains), or date filters (fromDate/toDate) — call the REST Search API directly. Requires LINKUP_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"}'

Reason from the data request (before writing q)

Installs
184
GitHub Stars
8
First Seen
Feb 11, 2026
linkup-search — linkupplatform/skills