Analyst agents
A price or market analyst that checks the web before it writes the report.
Compare prices for AirPods Pro at three US retailers.
Attach Import.io Web Scraper MCP with MCPServerStreamableHttp and every agent in your workflow can fetch, render and extract from live pages.
import asyncio, os
from agents import Agent, Runner
from agents.mcp import MCPServerStreamableHttp
async def main():
async with MCPServerStreamableHttp(
name="Import.io",
params={
"url": "https://mcp.import.io/mcp",
"headers": {"Authorization": f"Bearer {os.environ['IMPORTIO_MCP_KEY']}"},
},
) as importio:
agent = Agent(
name="Price analyst",
instructions="Fetch live pages with Import.io. Return tables with source URLs.",
mcp_servers=[importio],
)
result = await Runner.run(agent, "Compare prices for AirPods Pro at three US retailers.")
print(result.final_output)
asyncio.run(main())Any public page, rendered, through managed proxies
Rendering, proxy routing, captcha handling, extraction
https://mcp.import.io/mcp
Import.io as a Streamable HTTP MCP server for your agents.
A price or market analyst that checks the web before it writes the report.
Compare prices for AirPods Pro at three US retailers.
A research agent collects pages; a writer agent receives rows and URLs, not guesses.
Collect specs for these five laptops, then hand off to the comparison writer.
Run the agent on a schedule and diff today’s extraction against yesterday’s.
Check these competitor pages and report any price change over 5%.
pip install openai-agents.https://mcp.import.io/mcp with a bearer header.mcp_servers when you create the agent, then run it.Tool listing happens when the connection opens. Listing is never billed; only successful tool calls are.
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 minMCPGive every agent in a crew live web data tools.
Setup 10 minMCPCall Import.io tools directly from the official Python and TypeScript SDKs.
Setup 10 min