voidcrawl-mcp 0.3.2

Stdio MCP server exposing voidcrawl stealth headless Chrome to Claude Code and other MCP clients
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! `VoidCrawl` MCP server library.
//!
//! Exposes `void_crawl_core`'s stealth browser pool and session API to
//! Claude Code via the Model Context Protocol. The crate also ships a
//! binary (`voidcrawl-mcp`) that wires the library up over stdio.

pub mod errors;
pub mod install;
pub mod server;
pub mod sessions;
pub mod state;
pub mod tools;

pub use server::VoidCrawlServer;
pub use state::AppState;