1. Conduid
  2. Browser
  3. Linkup MCP Server
MCP server · Browser

Linkup MCP Server

Linkup MCP server for web search and fetching web content

Unclaimed MIT last commit 6 months ago browser
64Good

Scored 3 months ago · breakdown

About Linkup MCP Server

Linkup MCP Server is an MCP server published by LinkupPlatform in the Browser category: linkup MCP server for web search and fetching web content. It has been installed 0 times through Conduid.

The repository has 24 stars and 6 forks, with the last commit 6 months ago. Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx linkup-mcp-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Linkup MCP Server

Powered by Claude · Grounded in docs

I know everything about Linkup MCP Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

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 answers
    • deep - For complex research requiring analysis across multiple sources
  • 🖥️ JavaScript Rendering: Optional JS rendering for dynamic content
  • 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

  1. Create a Linkup account for free at app.linkup.so
  2. 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

Install MCP Server

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:

  1. Download linkup-mcp-server.mcpb from releases (or use the curl command above)
  2. Click on the file to install
  3. Configure your API key when prompted

Local MCP Server

You can also run the MCP server locally over the stdio transport.

Cursor

Install MCP Server

{
  "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:

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"

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): 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:

  • 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 >= 22.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.

README mirrored from the source repository 3 months ago. The original is authoritative.

Questions

About Linkup MCP Server

How do I install Linkup MCP Server?

Run npx linkup-mcp-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Linkup MCP Server safe to use with an AI agent?

Its trust score is 64 out of 100 (good). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Linkup MCP Server still maintained?

The last commit was 6 months ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.