quantumproxies-mcp
OfficialQuantumProxies MCP サーバー
QuantumProxies を Claude、Cursor、およびあらゆる MCP クライアントに接続します。AI エージェントにライブな Web アクセスを提供し、 住宅用プロキシと実際のブラウザ TLS フィンガープリントを通じて、スクレイピング、 検索、マッピング、クロールを実行できるようにします。通常のボットをブロックする ページも正常に取得できます。また、アクティブなプランから、あらゆるタイプの (住宅用、モバイル、データセンター、ISP、IPv6)生のプロキシエンドポイントを エージェントに渡し、任意の HTTP クライアントに接続できるようにします。
これは、お客様自身の qp_live_ キーを使用して 公開 QuantumProxies
Scraper API を呼び出すため、内部シークレットはなく、ローカルで実行されます。
ツール
ツール | 機能 |
| 1 つの URL をスクレイピングして Markdown/HTML/テキスト(PDF/Office ドキュメントを含む)に変換します。マルチフォーマット出力、絶対リンク収集、JSON-LD メタデータ、構造化 CSS 抽出、AI プロンプト/JSON スキーマ抽出、 |
| URL を JavaScript なしのボットとして かつ 完全レンダリングで取得し、両方の SEO ビューと差分(JS のみのコンテンツ、変更されたタイトル/説明、欠落した canonical)およびボット向けメタ(robots、OG、JSON-LD)を返します。 |
| 構造化された Google/Bing/DuckDuckGo の結果。Google AI Overview、PAA、Knowledge Graph などの JS 拡張には |
| SERP → 上位ページを取得 → 番号付きの引用可能なソースと、AI プロンプトにそのまま使えるトークン制限付きのコンテキスト文字列を生成します。 |
| 非同期の複数ページページネーションで、統合されたオーガニック結果と 1 ページ目の AI/ゼロクリック拡張を提供します。 |
| 高速な URL 発見(サイトマップ + ホームページのリンク)。完全なクロールは行いません。デフォルトではコンパクト: 最大 |
| 非同期 BFS サイトクロール → ページごとに Markdown。進捗をポーリングします。 |
| 多数の URL を非同期でスクレイピング。 |
| プロンプト駆動の構造化データセット収集。予算と行数の制限付き。 |
| 既製のコレクター: URL の代わりにセマンティック入力(キーワード + 場所、場所 ID、製品 ID、ドメインなど)でバージョン管理されたスクレイパーを実行します — Google Maps の場所、場所のレビュー、Google Jobs/News/Shopping、製品オファー、ホテル、地元ビジネスのリード、サイト連絡先、会社プロフィール。配信行ごとに課金。非同期実行は |
| すべてのタイプのプロキシサービスを一覧表示 — Residential Basic/Premium/Private、Mobile、Mobile V2、Datacenter、ISP、IPv6 — 残り帯域、有効期限、生成に使用する |
| 任意のアクティブプランからすぐに使えるプロキシ文字列(資格情報を含む)を生成: 地理ターゲティング(国/州/都市/ISP/ASN)、ローテーションまたはスティッキーセッション、HTTP または SOCKS5、複数の出力形式。 |
| プランタイプごとの有効な地理ターゲティング値: 国、州、都市、ASN、または ISP コードを含む完全なロケーションツリー。 |
| 対応プラン向けの IP 認証ホワイトリスト管理(追加/一覧/削除)。Mobile V2 の IP 認証プロキシリストを含みます。 |
Related MCP server: ProxyClaw MCP Server
クイックスタート
インストール不要 — npx が quantumproxies-mcp をオンデマンドで取得します(Node.js 18+)。
Claude Code(1 コマンド):
claude mcp add quantumproxies \
-e QUANTUMPROXIES_API_KEY=qp_live_your_key_here \
-- npx -y quantumproxies-mcpClaude Desktop / Cursor / その他の MCP クライアント(claude_desktop_config.json、.cursor/mcp.json、または .mcp.json):
{
"mcpServers": {
"quantumproxies": {
"command": "npx",
"args": ["-y", "quantumproxies-mcp"],
"env": { "QUANTUMPROXIES_API_KEY": "qp_live_your_key_here" }
}
}
}ホスト型エンドポイント(リモート MCP)
同じサーバーは、ローカルパッケージよりも URL を好むクライアント向けに、 ホスト型 Streamable HTTP エンドポイントとしても実行されます:
https://api.quantumproxies.io/mcpキーはリクエストごとに Authorization ヘッダーで送信されるため、サーバー側に
何も保存されず、1 つのエンドポイントがすべてのアカウントにサービスを提供します:
curl -X POST https://api.quantumproxies.io/mcp \
-H "Authorization: Bearer qp_live_your_key_here" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'リモート MCP サーバーをサポートするクライアントでは、その URL とベアラートークンを
持つ HTTP サーバーとして追加します。initialize と tools/list はキーなしで応答するため、
ディレクトリやインスペクタがサーバーをイントロスペクトできます。ツール呼び出しには
キーが必要です。
エンドポイントのセルフホスティングは、この同じパッケージ内の 2 番目のバイナリです:
QUANTUMPROXIES_API_KEY=qp_live_… PORT=9310 npx -y quantumproxies-mcp-remoteソースから実行(開発)
npm install
npm run build次に、npx の代わりにローカルビルドをクライアントに指定します:
{
"mcpServers": {
"quantumproxies": {
"command": "node",
"args": ["/absolute/path/to/scraper-mcp/dist/index.js"],
"env": {
"QUANTUMPROXIES_API_KEY": "qp_live_your_key_here"
}
}
}
}環境変数
変数 | デフォルト | 備考 |
| — | 必須。 お客様の |
|
| ステージング/セルフホスト用に上書き。 |
プロンプト例
"example.com の価格ページをスクレイピングして、プランと価格を教えて。"
"Google Shopping で 'nintendo switch oled' を米国で検索して、最安値 5 件をリストアップして。"
"docs.example.com をマップして、/guides/ ページだけをクロールして要約して。"
"プロキシプランを一覧表示して、スティッキーな米国住宅用プロキシを socks5 URL で 5 つ生成して。"
"ドイツのローテーションモバイルプロキシを取得して、サーバー IP 203.0.113.7 をホワイトリストに追加して。"
Maintenance
Related MCP Servers
- AlicenseAqualityFmaintenanceProvides AI agents with access to a global residential proxy network covering over 190 countries for web fetching and scraping. It enables pay-per-request transactions using USDC on the Base network via the x402 protocol.3882MIT
- AlicenseAqualityDmaintenanceRoutes web requests through 175M+ residential IPs across 195+ countries, enabling AI to bypass geo-restrictions and anti-bot systems.4621MIT

Novada Proxyofficial
AlicenseNot gradedqualityBmaintenanceEnables AI agents to route HTTP requests through millions of real residential IPs, bypassing anti-bot systems and geo-targeting by country or city.4MIT- AlicenseNot gradedqualityDmaintenanceA geo-distributed HTTP proxy for AI agents, enabling web fetching from multiple global regions (Frankfurt, Sydney, New York, San Francisco) with support for screenshots, scraping, and JS rendering.MIT
Related MCP Connectors
Reliable web access for AI agents: smart HTTP, rotating proxies, and full-browser rendering.
Enable language models to perform advanced AI-powered web scraping with enterprise-grade reliabili…
Turn the web into structured, reliable, actionable enterprise data for AI Agents
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/quantumproxies/quantumproxies-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server