Skip to main content

voidcrawl_mcp/
lib.rs

1//! `VoidCrawl` MCP server library.
2//!
3//! Exposes `void_crawl_core`'s stealth browser pool and session API to
4//! Claude Code via the Model Context Protocol. The crate also ships a
5//! binary (`voidcrawl-mcp`) that wires the library up over stdio.
6
7pub mod errors;
8pub mod install;
9pub mod server;
10pub mod sessions;
11pub mod state;
12pub mod tools;
13
14pub use server::VoidCrawlServer;
15pub use state::AppState;