Linkup MCP Server
OfficialLinkup MCPサーバー
Linkupの高度なAPIを通じてウェブ検索およびページ取得機能を提供するModel Context Protocol (MCP) サーバーです。このサーバーにより、ClaudeのようなAIアシスタントは、自然言語クエリを使用したインテリジェントなウェブ検索を実行し、あらゆるウェブページからコンテンツを取得して、ウェブ上の信頼できるソースからリアルタイムの情報にアクセスできるようになります。
機能
🔍 リアルタイムウェブ検索: 最新の情報、ニュース、データをウェブで検索
🌐 ページ取得: あらゆるウェブページからコンテンツを取得・抽出
🎯 自然言語クエリ: 完全な質問形式を使用して最良の結果を取得
📊 柔軟な検索深度:
standard- 直接的な回答が必要なクエリ用deep- 複数のソースにわたる分析が必要な複雑な調査用
🖥️ JavaScriptレンダリング: 動的コンテンツ用のオプションのJSレンダリング
⚡ 高速: Linkupの最適化されたインフラストラクチャを活用
Related MCP server: ORZ MCP
インストール
Cursor、VSCode、Claude Code、Codex、またはその他のMCP互換クライアント
Linkup APIキー
APIキーの取得
app.linkup.soでLinkupアカウントを無料で作成
ダッシュボードからAPIキーをコピー
リモートMCPサーバー(推奨)
ホストされているLinkup MCPサーバーはStreamable HTTPトランスポートを使用します。クライアントがリモートHTTP MCPサーバーをサポートしている場合は、ホストされているエンドポイントを直接参照できます。
クライアントがカスタムHTTPヘッダーをサポートしている場合は、URLに含めるのではなく、Authorization: Bearer LINKUP_API_KEYとしてAPIキーを送信することを推奨します。カスタムヘッダーを送信できないクライアント向けに、?apiKey=...クエリパラメータも引き続きサポートされています。
Cursor
~/.cursor/mcp.jsonファイルに以下を追加してください:
{
"mcpServers": {
// ... other MCP servers
"linkup": {
"type": "http",
"url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY"
}
}
}VSCode
VS CodeのMCP設定ファイルに以下を追加してください。詳細はVS Code MCPドキュメントを参照してください。
{
"servers": {
// ... other MCP servers
"linkup": {
"url": "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY",
"type": "http"
}
}
}Codex
Codexは、リモートHTTP MCPサーバーとconfig.toml経由のカスタムHTTPヘッダーの両方をサポートしています。
環境変数からベアラートークンを使用する場合:
[mcp_servers.linkup]
url = "https://mcp.linkup.so/mcp"
bearer_token_env_var = "LINKUP_API_KEY"
enabled = trueまたは、クエリパラメータを使用し続ける場合:
[mcp_servers.linkup]
url = "https://mcp.linkup.so/mcp?apiKey=LINKUP_API_KEY"
enabled = trueMCPバンドル(Claude Desktop向け推奨)
Claude Desktopなどの互換性のあるMCPクライアント全体で動作する、自己完結型のパッケージであるプリビルドMCPバンドルをダウンロードしてください。MCPバンドルはAnthropicによって開発されています。詳細についてはMCP Bundlesリポジトリを参照してください。
クイックダウンロード:
curl -L -o linkup-mcp-server.mcpb https://github.com/LinkupPlatform/linkup-mcp-server/releases/latest/download/linkup-mcp-server.mcpbインストール:
リリースから
linkup-mcp-server.mcpbをダウンロード(または上記のcurlコマンドを使用)ファイルをクリックしてインストール
プロンプトが表示されたらAPIキーを設定
ローカルMCPサーバー
stdioトランスポートを使用して、MCPサーバーをローカルで実行することもできます。
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使用方法
設定が完了したら、AIエージェントにウェブ検索やウェブページコンテンツの取得を依頼できます:
検索例:
「AI開発に関する最新ニュースをウェブで検索して」
「東京の現在の天気は?」
「新しいEU AI法に関する情報と、それがスタートアップに与える影響を見つけて」
「NVIDIAの最新の株価を検索して」
取得例:
「https://example.com/article のコンテンツを取得して」
「このブログ記事のコンテンツを取得して要約して:https://blog.example.com/post」
「JavaScriptレンダリングを有効にして https://example.com を取得して」
検索深度
標準検索: 直接的な回答が必要なクエリに最適(天気、株価、単純な事実)
ディープ検索: 複数のソースにわたる分析が必要な複雑な調査に最適(包括的なガイド、比較分析、詳細な調査)
利用可能なツール
linkup-search
Linkupを使用してリアルタイムでウェブを検索し、信頼できるソースから最新の情報、事実、ニュースを取得します。
パラメータ:
query(必須): 自然言語の検索クエリ。完全な質問形式が最適です。depth(オプション): 検索深度 - "standard" (デフォルト) または "deep"
ユースケース:
リアルタイムデータ(天気、株価、スポーツのスコア、イベント)
速報ニュースや時事問題
最近の調査や出版物
製品情報や最新価格
スケジュールや空き状況
AIの知識ベースにないあらゆる情報
linkup-fetch
ウェブページのURLからコンテンツを取得・抽出します。
パラメータ:
url(必須): コンテンツを取得するURL。renderJs(オプション): JavaScriptコンテンツをレンダリングするかどうか(デフォルト: false)。JavaScript経由でコンテンツを読み込む動的ページに対して有効にします。注意: これによりリクエストが遅くなります。
ユースケース:
分析や要約のためのページコンテンツの取得
ニュースサイトからの記事コンテンツの抽出
技術系ウェブサイトからのドキュメント取得
ブログ記事やテキストコンテンツの取得
開発
前提条件
Node.js >= 22.0.0
npm
セットアップ
# Install dependencies
npm installHTTPサーバーの実行
npm run devこれにより、http://localhost:2121/mcpでローカルのStreamable HTTPサーバーが起動します。
stdioトランスポートでの実行
npm run build:stdio
npm run start:stdio -- apiKey=YOUR_API_KEYローカル開発では、環境変数を介してキーを渡すこともできます:
LINKUP_API_KEY=YOUR_API_KEY npm run start:stdioMCP Inspectorでのテスト
npm run build:stdio
npm run inspector -- apiKey=YOUR_API_KEYこれによりブラウザでMCP Inspectorが開き、検索ツールを対話的にテストできます。
ライセンス
MIT
リンク
サポート
問題がある場合は、メール(support@linkup.so)でご連絡いただくか、Discordサーバーにご参加ください。
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Connectors
Provides AI assistants with access to Seltz's powerful Web Search capabilities.
Give AI assistants access to real-time data. Search the web, compare flights, find hotels, and more.
LLM-ready web search + instant answers + URL-to-clean-text fetch for agents and RAG.
The best web search for your AI Agent
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables web content retrieval and semantic search capabilities through the Jina AI API. Provides tools to fetch content from URLs and perform intelligent web searches with natural language queries.3MIT
- AlicenseNot gradedqualityFmaintenanceEnables AI assistants and development tools to perform intelligent web searches with natural language queries using Linkup's search API.4655MIT
- AlicenseAqualityAmaintenanceProvides LLMs with real-time web search and content extraction capabilities, including text/news search, full-text URL reading, and targeted technical documentation search.324MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/LinkupPlatform/linkup-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server