Skip to main content

LangChain tools for the MrScraper web-scraping API

Project description

langchain-mrscraper

LangChain integration package for the MrScraper SDK.

This package exposes MrScraper capabilities as LangChain tools so agents can:

  • Fetch rendered HTML from protected websites
  • Create AI scrapers from natural-language prompts
  • Rerun AI/manual scrapers (single and bulk)
  • List and fetch scraping results

Installation

pip install -U langchain-mrscraper

or:

uv add langchain-mrscraper

mrscraper-sdk is installed automatically as a dependency, so users do not need to install it separately.

Quick start

import os
from langchain_mrscraper import MrScraperToolkit

os.environ["MRSCRAPER_API_KEY"] = "your-token"

tools = MrScraperToolkit().get_tools()

Use with an agent

from langgraph.prebuilt import create_react_agent
from langchain_openai import ChatOpenAI
from langchain_mrscraper import MrScraperToolkit

tools = MrScraperToolkit(token="your-token").get_tools()
agent = create_react_agent(ChatOpenAI(model="gpt-4o-mini"), tools)

Available tools

  • mrscraper_fetch_html
  • mrscraper_create_scraper
  • mrscraper_rerun_scraper
  • mrscraper_bulk_rerun_ai_scraper
  • mrscraper_rerun_manual_scraper
  • mrscraper_bulk_rerun_manual_scraper
  • mrscraper_get_all_results
  • mrscraper_get_result_by_id

API styles

You can initialize via:

  • MrScraperToolkit(...).get_tools() (recommended)
  • load_mrscraper_tools(...) convenience function
  • per-tool constructors with token="..." or mrscraper_api_key="..."
  • environment variables MRSCRAPER_API_KEY (preferred) or MRSCRAPER_API_TOKEN

Tools vs. loaders

This integration is intentionally tools-first. MrScraper endpoints are action-oriented (fetch, create, rerun, list, retrieve) and best represented as BaseTool methods that agents can call explicitly.

A document loader abstraction is usually better when the primary job is deterministic "URL -> documents" ingestion into vector stores. MrScraper can support that in a separate package later, but this package should remain focused on agent tools.

Testing

pytest tests/unit_tests -v

Integration smoke tests (real API):

MRSCRAPER_API_KEY=your-token pytest tests/integration_tests -m integration -v

Local release workflow

  1. Update version in pyproject.toml
  2. Build: python -m build
  3. Upload to TestPyPI: twine upload --repository testpypi dist/*
  4. Verify install from TestPyPI
  5. Upload to PyPI: twine upload dist/*

Docs files for LangChain PR

  • Provider page: docs/providers/mrscraper.mdx
  • Tool pages: docs/tools/*.mdx (one page per tool)

These are prepared to submit to langchain-ai/docs.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

langchain_mrscraper-0.1.0.tar.gz (6.5 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

langchain_mrscraper-0.1.0-py3-none-any.whl (7.0 kB view details)

Uploaded Python 3

File details

Details for the file langchain_mrscraper-0.1.0.tar.gz.

File metadata

  • Download URL: langchain_mrscraper-0.1.0.tar.gz
  • Upload date:
  • Size: 6.5 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.11.15

File hashes

Hashes for langchain_mrscraper-0.1.0.tar.gz
Algorithm Hash digest
SHA256 b78ac880bb383b1dc3fbcacd742319b955aab7b2f2e7661ed5d1d7bb1ecbbd2a
MD5 df49437821313b6545dbacc792e220a2
BLAKE2b-256 952baf017cc62c2c801de4f4bec09f223df7650784d0141e346cd968e19cc12d

See more details on using hashes here.

File details

Details for the file langchain_mrscraper-0.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for langchain_mrscraper-0.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 2c536c4b8b17453a1c19c63db92a87518a69981febfb5c02f2a3a9d4fa10e4a3
MD5 a2323059848f408a9b327f6def38ee54
BLAKE2b-256 e4cb9aad3616c476f96dc2ab2574d8717771e8b5d5e06d27d0e5a951e7f9978c

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page