Price checks inside your product
Answer customer or analyst questions with the current page, fetched at request time.
Is this item cheaper at any of these three retailers today?
Add the Import.io Web Scraper MCP endpoint to mcp_servers and Claude calls the scraping tools server-side, inside a single Messages API request. No MCP client to run.
import os, anthropic
client = anthropic.Anthropic()
resp = client.beta.messages.create(
model="claude-sonnet-5",
max_tokens=2000,
betas=["mcp-client-2025-11-20"],
mcp_servers=[{
"type": "url",
"url": "https://mcp.import.io/mcp",
"name": "importio",
"authorization_token": os.environ["IMPORTIO_MCP_KEY"],
}],
tools=[{"type": "mcp_toolset", "mcp_server_name": "importio"}],
messages=[{"role": "user", "content":
"Extract name, price and stock for every product on https://example.com/c/laptops"}],
)
print(resp.content){
"type": "mcp_toolset",
"mcp_server_name": "importio",
"default_config": { "enabled": false },
"configs": {
"importio_web_fetch": { "enabled": true },
"importio_extract_data": { "enabled": true }
}
}Any public page, rendered, through managed proxies
Rendering, proxy routing, captcha handling, extraction
https://mcp.import.io/mcp
Pass one server in mcp_servers and Claude calls Import.io tools server-side.
Answer customer or analyst questions with the current page, fetched at request time.
Is this item cheaper at any of these three retailers today?
Claude reads the pages it relies on and returns the URLs with the answer.
Summarize the returns policy of these five retailers with links.
Allowlist only the tools a use case needs, for example fetch and extract, and leave browser actions off.
Extract name, price and stock for every product on this category page.
mcp.import.io.mcp_servers, with the key as authorization_token.mcp_toolset entry in tools. Allowlist tools if you want a narrow agent.Yes. Set default_config enabled to false on the toolset and enable only the tools you want, such as importio_web_fetch and importio_extract_data.
Signup includes 10,000 successful calls. After that it is $0.0002 per successful call. Setup requests, tool listings, malformed requests, blocked requests and failed upstream calls are never billed, and you can set a monthly spend limit that stops paid usage when reached.
Use OAuth in interactive clients that support it: the client opens a sign-in, stores the credentials and reuses them. Use an API key for scripts, servers and clients without OAuth, sent as Authorization: Bearer mcp_live_…. Keep keys out of prompts and shared config files.
importio_web_fetch, importio_render, importio_extract_data and importio_get_html, page helpers such as importio_page_text, importio_page_links and importio_search_cards, and browser actions for clicks, form input, scrolling, pagination, waits, screenshots and captcha handling. Requests can pick a proxy country and type, with bounded retries when a page blocks.
Add Import.io as a remote MCP tool in the Responses API.
Setup 5 minMCPLoad Import.io tools with langchain-mcp-adapters into any agent.
Setup 10 minMCPCall Import.io tools directly from the official Python and TypeScript SDKs.
Setup 10 minMCPLive, structured web data as tools in Claude on the web and Claude Desktop.
Setup 2 min