Install the Linkup Skill
One command:
npx skills add LinkupPlatform/skills — works with Claude Code, Cursor, Windsurf, and more.1. System Prompt Snippet
Copy this into your agent’s system prompt, tool description, orCLAUDE.md file. It teaches any LLM how to use Linkup well.
Where to put this: System prompt,CLAUDE.md,.cursorrules, MCP tool descriptions, or framework tool docstrings. It works everywhere.
2. Query Construction — Examples
Your query should tell Linkup what to retrieve, not what to think. The system prompt snippet above teaches the 3-step reasoning (inputs → data location → sequencing). Here’s how it plays out:3. Output Types
For most agent use cases, usesearchResults.
| Output Type | Returns | Best For |
|---|---|---|
searchResults | Array of {name, url, content} | Agent-side reasoning, RAG, multi-source synthesis |
sourcedAnswer | Answer + source citations | User-facing chatbots, Q&A |
structured | JSON matching your schema | CRM updates, data pipelines, enrichment |
4. /fetch Endpoint
Use /fetch instead of /search when your agent already has the exact URL. It’s faster, cheaper, and returns clean markdown.
Always set renderJs: true (most sites need it).
Full fetch documentation →
5. Integration by Environment
- MCP: Linkup MCP Server
- VS Code: MCP Configuration Examples
- Claude Desktop: Linkup + Claude
- Smithery CLI: Quick Start
- Python SDK: Python
- LangChain: LangChain Integration
- CrewAI: CrewAI Integration
- Node.js: TypeScript / JavaScript SDK
- No-Code / Low-Code: Integrations
- cURL / HTTP: Quickstart
To Go Further
- Prompting Guide — Detailed best practices
- Prompt Optimizer — Optimize prompts interactively
- Prompt Templates — Ready-to-use templates
- API Reference — Full endpoint docs
- MCP Server (GitHub) — Source and setup
- Integrations — n8n, Make, Zapier, and more