servo-fetch 0.5.0

A browser engine in a binary. Fetch, render, and extract web content powered by Servo.
Documentation
1
2
3
4
5
6
7
8
9
10
11
//! MCP tool implementation helpers.

mod common;
mod crawl;
mod fetch;
mod screenshot;

pub(super) use common::{extract, paginate, tool_error, validated_url};
pub(super) use crawl::{CrawlToolOptions, crawl_pages};
pub(super) use fetch::{batch_fetch_pages, fetch_page, probe_pdf};
pub(super) use screenshot::take_screenshot;