Overview
The WraithBytes MCP Server is an open-source server that exposes web acquisition capabilities through the Model Context Protocol (MCP), enabling integration with Claude, Cursor, VS Code, and other MCP-compatible AI tools.Tools Provided
fetch_url
Fetch and parse any web page. Auto-detects the platform and applies the appropriate parser.
Parameters:
| Parameter | Type | Required | Description |
|---|---|---|---|
url | string | Yes | The URL to fetch and parse |
markdown | boolean | No | Return content as Markdown |
json | boolean | No | Return structured JSON |
include_links | boolean | No | Extract all links |
include_html | string | No | "cleaned" or "raw" HTML |
image_urls | boolean | No | Extract image URLs |
json_schema | object | No | Custom extraction schema |
ai_summary | boolean | No | Generate AI summary |
ai_image_transcription | boolean | No | Transcribe images |
ai_audio_transcription | boolean | No | Transcribe audio |
filters | object | No | Platform-specific filters |
get_fetch_results
Retrieve the history of past fetch results for your account. No parameters required.
Setup
Docker
From Source
Environment Variables
| Variable | Default | Description |
|---|---|---|
WRAITHBYTES_API_URL | http://localhost:5201 | WraithBytes API base URL |
WRAITHBYTES_SSE_ADDR | :2425 | SSE server listen address |
Authentication
The MCP server authenticates with the WraithBytes API using a Bearer token passed via theAuthorization header on the SSE connection. Each MCP client session uses its own API key.