quantumproxies-mcp
OfficialThis server gives AI agents live web access, search, crawling, and QuantumProxies proxy management.
Scrape pages to Markdown/HTML/text with rendering, structured CSS extraction, AI extraction, summaries, chunking, and more.
Run SEO audits comparing no-JS and rendered views, with diff and bot-facing metadata.
Search Google/Bing/DuckDuckGo with rich verticals, pagination, and search-and-read research context.
Map site URLs, crawl sites asynchronously, and scrape batches of URLs with progress polling.
Create structured datasets from plain-language prompts with row/budget limits.
Run prebuilt Collectors for Google Maps, reviews, jobs, shopping, products, and many other sources.
Generate and save parser presets for reusable, deterministic extraction.
List proxy plans, generate ready-to-use proxy endpoints with geo/rotation/protocol options, fetch valid targeting locations, and manage IP whitelists.
Provides structured DuckDuckGo search results for web searches alongside other search engines.
Provides Google search result scraping with structured organic results, AI Overview, People Also Ask, and Knowledge Graph enrichment, plus access to Google Shopping, Jobs, News, and other Google search verticals.
Enables collection of Google Maps data such as places, place reviews, and local business leads using keyword and location inputs.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@quantumproxies-mcpScrape the pricing page at example.com and give me the plans and prices."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
QuantumProxies MCP Server
Connect QuantumProxies to Claude, Cursor, Cline, and any MCP client. Gives an AI agent live web access — scrape, search, map, and crawl — through residential proxies with real-browser TLS fingerprints, so pages that block ordinary bots come back clean. It also hands the agent raw proxy endpoints of every type (residential, mobile, datacenter, ISP, IPv6) from your active plans, ready to plug into any HTTP client.
It calls the public QuantumProxies Scraper API with your own qp_live_ key,
so there are no internal secrets and you run it locally.
Tools
Tool | What it does |
| Scrape one URL → Markdown/HTML/text, including PDF/Office documents. Supports multi-format output, absolute link collection, JSON-LD metadata, structured CSS extraction, AI prompt/JSON-schema extraction, and |
| Fetch a URL as a no-JS bot and fully rendered, return both SEO views + the diff (JS-only content, changed title/description, missing canonical) and bot-facing meta (robots, OG, JSON-LD). |
| Structured Google/Bing/DuckDuckGo results. Set |
| SERP → fetch top pages → numbered citation-ready sources and one token-bounded context string ready for an AI prompt. |
| Async multi-page pagination with merged organic results and page-one AI/zero-click enrichments. |
| Fast URL discovery (sitemaps + homepage links), no full crawl. Compact by default: up to |
| Async BFS site crawl → Markdown per page; poll for progress. |
| Scrape many URLs asynchronously; |
| Prompt-driven structured dataset collection with budget and row limits. |
| Ready-made Collectors: run a versioned scraper with a semantic input (keyword + location, place id, product id, domain…) instead of URLs — Google Maps places, place reviews, Google Jobs/News/Shopping, product offers, hotels, local business leads, site contacts, company profile. Priced per delivered row; async runs poll by |
| List your proxy services of every type — Residential Basic/Premium/Private, Mobile, Mobile V2, Datacenter, ISP, IPv6 — with bandwidth left, expiry and the |
| Ready-to-use proxy strings (credentials included) from any active plan: geo targeting (country/state/city/ISP/ASN), rotating or sticky sessions, HTTP or SOCKS5, several output formats. |
| Valid geo-targeting values per plan type: countries, states, cities, ASNs, or the full location tree with ISP codes. |
| Manage IP-auth whitelisting (add/list/remove) for plans that support it, including the Mobile V2 IP-auth proxy list. |
Related MCP server: ProxyClaw MCP Server
Quick start
No install needed — npx fetches quantumproxies-mcp on demand (Node.js 18+).
Claude Code (one command):
claude mcp add quantumproxies \
-e QUANTUMPROXIES_API_KEY=qp_live_your_key_here \
-- npx -y quantumproxies-mcpClaude Desktop / Cursor / Cline / any MCP client (claude_desktop_config.json, .cursor/mcp.json, Cline's MCP settings, or .mcp.json):
{
"mcpServers": {
"quantumproxies": {
"command": "npx",
"args": ["-y", "quantumproxies-mcp"],
"env": { "QUANTUMPROXIES_API_KEY": "qp_live_your_key_here" }
}
}
}Hosted endpoint (remote MCP)
The same server also runs as a hosted Streamable HTTP endpoint, for clients that prefer a URL over a local package:
https://api.quantumproxies.io/mcpYour key travels per request in the Authorization header, so nothing is
stored server-side and one endpoint serves every account:
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"}'The endpoint accepts either header — Authorization: Bearer qp_live_your_key_here
(preferred) or X-Api-Key: qp_live_your_key_here — so clients that can't set an
Authorization header can send the key directly.
In a client that supports remote MCP servers, add it as an HTTP server with that
URL and your key. For Cline (and any client that defaults to legacy SSE),
set the transport type explicitly to streamableHttp:
{
"mcpServers": {
"quantumproxies": {
"type": "streamableHttp",
"url": "https://api.quantumproxies.io/mcp",
"headers": { "Authorization": "Bearer qp_live_your_key_here" }
}
}
}initialize and tools/list answer without a key so directories and inspectors
can introspect the server; tool calls need one.
Self-hosting the endpoint is a second binary in this same package:
QUANTUMPROXIES_API_KEY=qp_live_… PORT=9310 npx -y quantumproxies-mcp-remoteRun from source (development)
npm install
npm run buildThen point the client at the local build instead of npx:
{
"mcpServers": {
"quantumproxies": {
"command": "node",
"args": ["/absolute/path/to/quantumproxies-mcp/dist/index.js"],
"env": {
"QUANTUMPROXIES_API_KEY": "qp_live_your_key_here"
}
}
}
}Env
Var | Default | Notes |
| — | Required. Your |
|
| Override for staging/self-host. |
Example prompts
"Scrape the pricing page at example.com and give me the plans and prices."
"Search Google Shopping for 'nintendo switch oled' in the US and list the cheapest 5."
"Map docs.example.com, then crawl only the /guides/ pages and summarize them."
"List my proxy plans and generate 5 sticky US residential proxies as socks5 URLs."
"Get me a rotating mobile proxy in Germany and whitelist my server IP 203.0.113.7."
Privacy Policy
Full policy: https://quantumproxies.io/privacy
What this server sends. It runs on your machine and talks only to the public
QuantumProxies API at https://app.quantumproxies.io/api/v1, authenticated with
your own qp_live_ key. Each call carries the arguments you (or your agent)
passed — the target URL or query, and any extraction prompt. Nothing else on your
machine is read or transmitted: the server has no filesystem, shell or clipboard
access.
What we collect. Account data you give us (name, email, billing details) and a request log kept for billing, abuse prevention and support: target URL or query, timestamp, response status, bytes transferred and the API key used. We do not retain scraped page content beyond what is needed to return your result.
Data you collect through the service. You decide what public web data to collect and you are the controller of that data — we process it on your behalf only to fulfil your request. You are responsible for using the service lawfully, for respecting the terms of the sites you access, and for any personal data you collect through it.
Sharing. We do not sell personal data. We share it only with the processors that run the service — payment providers, email delivery, hosting, CDN and analytics — under contracts that bind them to protect it, and with the upstream proxy networks that route your traffic (connection metadata only, never your account details). We may disclose data where required by law.
Retention. Account data for as long as the account exists; request logs on a rolling window for billing and abuse investigation. You can request deletion at any time.
Your key. Claude Desktop stores it in the OS keychain and passes it to this server as an environment variable. It is never written to the bundle and never sent anywhere except the QuantumProxies API. Revoke or rotate it at https://app.quantumproxies.io/api-keys.
Contact. support@quantumproxies.io
Maintenance
Related MCP Servers
- AlicenseAqualityDmaintenanceProvides 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.3992MIT
- 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.
Live web access for agents: scrape, SERP search, crawl/map, 74 collectors, datasets, proxies.
Enable language models to perform advanced AI-powered web scraping with enterprise-grade reliabili…
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