reasonkit-web 0.1.7

High-performance MCP server for browser automation, web capture, and content extraction. Rust-powered CDP client for AI agents.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
//! Browser automation module
//!
//! This module provides high-level browser control through ChromiumOxide,
//! including lifecycle management, navigation, and capture functionality.

pub mod capture;
pub mod controller;
pub mod navigation;
pub mod stealth;

pub use capture::{CaptureFormat, CaptureOptions, CaptureResult, PageCapture};
pub use controller::{BrowserConfig, BrowserController, PageHandle};
pub use navigation::{NavigationOptions, NavigationResult, PageNavigator, WaitUntil};
pub use stealth::StealthMode;