Search the web in real time to get trustworthy, source-backed answers. Find the latest news and co…
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.
standard - For queries with direct answersdeep - For complex research requiring analysis across multiple sourcesYou can access the MCP server directly through Smithery. From there, you'll be able to install the server into your favorite MCP compatible client. The remote MCP server is using the Streamable HTTP transport.
You can also use the Smithery CLI to install the server into your favorite MCP compatible client.
npx @smithery/cli login # If you haven't already
npx -y @smithery/cli@latest install linkup-mcp-server --client <CLIENT_NAME> --config '{"apiKey":<LINKUP_API_KEY>}'Finally, if your client supports OAuth protocol, you can reference directly the remote MCP server URL. See examples below:
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"
}
}
}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"
}
}
}Download the pre-built MCP bundle, a self-contained package that works across compatible MCP clients (like Claude Desktop for example). MCP Bundles are developed by Anthropics see here for more info.
Quick Download:
curl -L -o linkup-mcp-server.mcpb https://github.com/LinkupPlatform/linkup-mcp-server/releases/latest/download/linkup-mcp-server.mcpbInstallation:
linkup-mcp-server.mcpb from releases (or use the curl command above)You can also run the MCP server locally through the stdio transport.
{
"mcpServers": {
// ... other MCP servers
"linkup": {
"command": "npx",
"args": [
"-y",
"linkup-mcp-server",
"apiKey=LINKUP_API_KEY"
]
}
}
}{
"servers": {
// ... other MCP servers
"linkup": {
"command": "npx",
"type": "stdio",
"args": [
"-y",
"linkup-mcp-server",
"apiKey=LINKUP_API_KEY"
]
}
}
}Once configured, you can ask your AI agent to search the web or fetch webpage content:
Search Examples:
Fetch Examples:
linkup-searchSearch 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"Use cases:
linkup-fetchFetch and extract content from any webpage URL.
Parameters:
url (required): The URL to fetch content from.renderJs (optional): Whether to render JavaScript content (default: false). Enable this for dynamic pages that load content via JavaScript. Note: This makes the request slower.Use cases:
# Install dependencies
npm installnpm run devnpm run build:stdio
npm run start:stdio apiKey=YOUR_API_KEYnpm run build:stdio
npm run inspector apiKey=YOUR_API_KEYThis will open the MCP Inspector in your browser where you can test the search tool interactively.
MIT
If you have issues, contact us via email at support@linkup.so or join our Discord server.