Linkup
搜索与获取by LinkupPlatform
实时搜索 Web,获取可信且带来源依据的答案;从高相关来源发现最新新闻与完整结果,并用自然语言快速收集事实、引用和上下文。
什么是 Linkup?
实时搜索 Web,获取可信且带来源依据的答案;从高相关来源发现最新新闻与完整结果,并用自然语言快速收集事实、引用和上下文。
核心功能 (2 个工具)
linkup-searchSearch the web in real time using Linkup to retrieve current information, facts, and news from trusted sources. Use this tool for: real-time data (weather, stocks, sports scores, events), breaking news, current events, recent research, product information, up-to-date prices, schedules, and any information not available in your knowledge base. Returns comprehensive content from the most relevant sources.
linkup-fetchFetch a URL and return the content of the page. If you are unable to fetch the page content, might be worth trying to render the JavaScript content.
README
Linkup MCP Server
A Model Context Protocol (MCP) server that provides web search and page fetching capabilities through Linkup's advanced API. This server enables AI assistants like Claude to perform intelligent web searches with natural language queries and fetch content from any webpage, accessing real-time information from trusted sources across the web.
Features
- 🔍 Real-time Web Search: Search the web for current information, news, and data
- 🌐 Page Fetching: Fetch and extract content from any webpage
- 🎯 Natural Language Queries: Use full questions for best results
- 📊 Flexible Search Depth:
standard- For queries with direct answersdeep- For complex research requiring analysis across multiple sources
- 🎯 Result Filtering: Restrict by domain (
includeDomains/excludeDomains), date range (fromDate/toDate), andmaxResults - 🖼️ Image Results: Optional
includeImagesfor search andextractImagesfor fetch - 🖥️ JavaScript Rendering: Optional JS rendering for dynamic content
- 📄 Raw HTML: Optional
includeRawHtmlfor fetch when you need the unprocessed page - ⚡ Fast: Powered by Linkup's optimized infrastructure
Installation
- Cursor, VSCode, Claude Code, Codex, or another MCP compatible client
- Linkup API key
Getting Your API Key
- Create a Linkup account for free at app.linkup.so
- Copy the API key from your dashboard
Remote MCP Server (recommended)
The hosted Linkup MCP server uses the Streamable HTTP transport. If your client supports remote HTTP MCP servers, you can reference the hosted endpoint directly.
If your client supports custom HTTP headers, prefer sending your API key in Authorization: Bearer LINKUP_API_KEY instead of putting it in the URL. The ?apiKey=... query parameter remains supported for clients that cannot send custom headers.
Cursor
In your ~/.cursor/mcp.json file, add the following:
{
"mcpServers": {
// ... other MCP servers
"linkup": {
"type": "http",
"url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY"
}
}
}
VSCode
Add this to your VS Code MCP config file. See VS Code MCP docs for more info.
{
"servers": {
// ... other MCP servers
"linkup": {
"url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY",
"type": "http"
}
}
}
Codex
Codex supports both remote HTTP MCP servers and custom HTTP headers via config.toml.
Using a bearer token from the environment:
[mcp_servers.linkup]
url = "https://mcp.linkup.so/mcp"
bearer_token_env_var = "LINKUP_API_KEY"
enabled = true
Or, if you prefer to keep using the query parameter:
[mcp_servers.linkup]
url = "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY"
enabled = true
MCP Bundle (recommended for Claude Desktop)
Download the pre-built MCP bundle, a self-contained package that works across compatible MCP clients such as Claude Desktop. MCP Bundles are developed by Anthropic. See the MCP Bundles repository for more information.
Quick Download:
curl -L -o linkup-mcp-server.mcpb https://github.com/LinkupPlatform/linkup-mcp-server/releases/latest/download/linkup-mcp-server.mcpb
Installation:
- Download
linkup-mcp-server.mcpbfrom releases (or use the curl command above) - Click on the file to install
- Configure your API key when prompted
Local MCP Server
You can also run the MCP server locally over the stdio transport.
Cursor
{
"mcpServers": {
// ... other MCP servers
"linkup": {
"command": "npx",
"args": [
"-y",
"linkup-mcp-server",
"apiKey=LINKUP_API_KEY"
]
}
}
}
VSCode
{
"servers": {
// ... other MCP servers
"linkup": {
"command": "npx",
"type": "stdio",
"args": [
"-y",
"linkup-mcp-server",
"apiKey=LINKUP_API_KEY"
]
}
}
}
Codex
[mcp_servers.linkup]
command = "npx"
args = ["-y", "linkup-mcp-server", "apiKey=LINKUP_API_KEY"]
enabled = true
Usage
Once configured, you can ask your AI agent to search the web or fetch webpage content:
Search Examples:
- "Search the web for the latest news about AI developments"
- "What's the current weather in Tokyo?"
- "Find information about the new EU AI Act and how it affects startups"
- "Search for the latest stock price of NVIDIA"
Fetch Examples:
- "Fetch the content from https://example.com/article"
- "Get the content of this blog post: https://blog.example.com/post and make a summary of it"
- "Fetch https://example.com with JavaScript rendering enabled"
Search Depths
- Standard Search: Best for queries with direct answers (weather, stock prices, simple facts)
- Deep Search: Best for complex research requiring analysis across multiple sources (comprehensive guides, comparative analysis, in-depth research)
Tools Available
linkup-search
Search the web in real time using Linkup to retrieve current information, facts, and news from trusted sources.
Parameters:
query(required): Natural language search query. Full questions work best.depth(optional): Search depth -"standard"(default) or"deep".includeImages(optional, defaultfalse): Return relevant images alongside text results, each with a URL and metadata.includeDomains(optional): Array of domains to restrict results to, e.g.["bbc.com", "reuters.com"]. Max 100 domains.excludeDomains(optional): Array of domains to exclude from results, e.g.["reddit.com", "quora.com"].fromDate(optional): Only include content published on or after this date. FormatYYYY-MM-DD.toDate(optional): Only include content published on or before this date. FormatYYYY-MM-DD.maxResults(optional): Maximum number of results to return (positive integer).
Use cases:
- Real-time data (weather, stocks, sports scores, events)
- Breaking news and current events
- Recent research and publications
- Product information and up-to-date prices
- Schedules and availability
- Any information not available in the AI's knowledge base
linkup-fetch
Fetch and extract content from any webpage URL.
Parameters:
url(required): The URL to fetch content from.renderJs(optional, defaultfalse): Whether to render JavaScript content. Enable for dynamic pages that load content via JavaScript. Note: makes the request slower.extractImages(optional, defaultfalse): Extract images found on the page and return them in a dedicatedimagesfield. Useful when you need a list of all images for further processing or analysis.includeRawHtml(optional, defaultfalse): Include the page's raw HTML in a dedicatedrawHtmlfield. Useful for custom HTML parsing, preserving specific formatting, or accessing elements that might be filtered out during standard content extraction.
Use cases:
- Retrieve page content for analysis or summarization
- Extract article content from news sites
- Get documentation from technical websites
- Fetch blog posts and written content
Development
Prerequisites
- Node.js >= 24.0.0
- npm
Setup
# Install dependencies
npm install
Running the HTTP Server
npm run dev
This starts the local Streamable HTTP server at http://localhost:2121/mcp.
Running with the stdio Transport
npm run build:stdio
npm run start:stdio -- apiKey=YOUR_API_KEY
For local development, you can also pass the key via environment variable:
LINKUP_API_KEY=YOUR_API_KEY npm run start:stdio
Testing with MCP Inspector
npm run build:stdio
npm run inspector -- apiKey=YOUR_API_KEY
This will open the MCP Inspector in your browser where you can test the search tool interactively.
License
MIT
Links
Support
If you have issues, contact us via email at support@linkup.so or join our Discord server.
常见问题
Linkup 是什么?
实时搜索 Web,获取可信且带来源依据的答案;从高相关来源发现最新新闻与完整结果,并用自然语言快速收集事实、引用和上下文。
Linkup 提供哪些工具?
提供 2 个工具,包括 linkup-search、linkup-fetch。
相关 MCP Server
Puppeteer 浏览器控制
编辑精选by Anthropic
Puppeteer 是让 Claude 自动操作浏览器进行网页抓取和测试的 MCP 服务器。
✎ 这个服务器解决了手动编写 Puppeteer 脚本的繁琐问题,适合需要自动化网页交互的开发者,比如抓取动态内容或做端到端测试。不过,作为参考实现,它可能缺少生产级的安全防护,建议在可控环境中使用。
网页抓取
编辑精选by Anthropic
Fetch 是 MCP 官方参考服务器,让 AI 能抓取网页并转为 Markdown 格式。
✎ 这个服务器解决了 AI 直接处理网页内容时格式混乱的问题,适合需要让 Claude 分析在线文档或新闻的开发者。不过作为参考实现,它缺乏生产级的安全配置,你得自己处理反爬虫和隐私风险。
Brave 搜索
编辑精选by Anthropic
Brave Search 是让 Claude 直接调用 Brave 搜索 API 获取实时网络信息的 MCP 服务器。
✎ 如果你想让 AI 助手帮你搜索最新资讯或技术文档,这个工具能绕过传统搜索的限制,直接返回结构化数据。特别适合需要实时信息的开发者,比如查 API 更新或竞品动态。不过它依赖 Brave 的 API 配额,高频使用可能受限。