WebScout MCP is a powerful Model Context Protocol (MCP) server designed for reverse engineering web applications, particularly chat interfaces and streaming APIs. It provides comprehensive browser automation tools to discover, analyze, and capture network traffic from complex web applications.
- One-Click Analysis: Automatically navigate to web applications and capture streaming endpoints
- Smart Pattern Detection: Advanced detection of SSE, WebSocket, chunked transfers, and custom streaming formats
- Network Traffic Capture: Comprehensive CDP-level monitoring of all HTTP requests, responses, and WebSocket frames
- Structured Data Output: Clean, parsed data with URLs, request payloads, and response patterns
- Session Management: Persistent browser sessions with cookie and authentication state management
- Authentication Support: Handle login forms, OAuth flows, and multi-factor authentication
- Step-by-Step Navigation: Click buttons, fill forms, and navigate through complex multi-page interfaces
- Visual Feedback: Take screenshots at any point to understand page state and UI elements
- Real-Time Capture: Monitor streaming responses as they occur with configurable capture windows
- Flexible Filtering: Capture all traffic or filter by POST requests, streaming responses, or URL patterns
- WebSocket Support: Full capture of WebSocket frames, messages, and connection details
- Memory Management: Configurable capture limits to prevent memory issues during long sessions
- 14 Specialized Tools: Comprehensive toolkit for web scraping, testing, and API discovery
- Headless or Visible: Run in headless mode for automation or visible mode for debugging
- Error Handling: Robust error handling with detailed error messages and recovery options
- Cross-Platform: Works on macOS, Linux, and Windows with consistent behavior
reverse_engineer_chat
- Automated analysis of chat interfaces with streaming endpoint discoverystart_network_capture
- Begin comprehensive network traffic monitoringstop_network_capture
- End capture and retrieve all collected dataget_network_capture_status
- Check capture session status and statisticsclear_network_capture
- Clear captured data without stopping the capture session
initialize_session
- Create a new browser session for interactive operationsclose_session
- Clean up browser resources and end sessionnavigate_to_url
- Navigate to different URLs within a sessionswitch_tab
- Switch between open browser tabs
click_element
- Click buttons, links, or any interactive elementsfill_form
- Fill out form fields with automatic submission optionswait_for_element
- Wait for dynamic elements to appear before continuing
take_screenshot
- Capture screenshots of viewport, full page, or specific elementsget_current_page_info
- Retrieve comprehensive page information and tab details
- Node.js 18+ - Required for ES modules and modern JavaScript features
- npm - Package manager for dependency installation
# Clone the repository
git clone https://github.com/pyscout/webscout-mcp
cd webscout-mcp
# Install dependencies
npm install
# Install Playwright browsers for automation
npx playwright install
Add WebScout MCP to your MCP client configuration:
{
"mcpServers": {
"webscout-mcp": {
"command": "npx",
"args": ["-y", "webscout-mcp"]
}
}
}
# Start the MCP server directly
npm start
# Or run with node
node src/index.js
# Run with visible browser for debugging
node src/index.js # Set headless: false in session initialization
// Initialize session and analyze a chat interface
const session = await initializeSession("https://chat.example.com");
const analysis = await reverseEngineerChat("https://chat.example.com", "Hello", 8000);
console.log("Found endpoints:", analysis.length);
await closeSession(session.sessionId);
// Handle login and navigate to protected content
const session = await initializeSession("https://app.example.com/login");
await fillForm(session.sessionId, [
{ selector: 'input[name="email"]', value: "user@example.com" },
{ selector: 'input[name="password"]', value: "password123" }
], 'button[type="submit"]');
await waitForElement(session.sessionId, ".dashboard", 10000);
const screenshot = await takeScreenshot(session.sessionId);
await closeSession(session.sessionId);
// Monitor all network activity on a page
const session = await initializeSession("https://api.example.com");
await startNetworkCapture(session.sessionId, {
capturePostOnly: false,
captureStreaming: true,
maxCaptures: 100
});
// Perform actions that generate network traffic
await navigateToUrl(session.sessionId, "https://api.example.com/data");
const captureData = await stopNetworkCapture(session.sessionId);
console.log("Captured requests:", captureData.data.requests.length);
await closeSession(session.sessionId);
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ Chat Interface │───▶│ Browser Automation│───▶│ Network Capture │
│ (Target URL) │ │ (Playwright) │ │ (CDP + Route) │
└─────────────────┘ └──────────────────┘ └─────────────────┘
│ │ │
▼ ▼ ▼
┌─────────────────┐ ┌──────────────────┐ ┌─────────────────┐
│ Message Input │ │ DOM Interaction │ │ Request/Response│
│ Detection │ │ (Auto-fill) │ │ Analysis │
└─────────────────┘ └──────────────────┘ └─────────────────┘
│
▼
┌─────────────────┐
│ Structured Data │
│ Output (JSON) │
└─────────────────┘
- Browser Launch: Opens target URL in headless Playwright browser
- Network Setup: Establishes Chrome DevTools Protocol (CDP) session and route interception
- Interface Detection: Automatically locates chat input elements (textarea, contenteditable, etc.)
- Message Injection: Sends test message to trigger streaming responses
- Traffic Capture: Monitors network requests/responses for specified time window
- Pattern Analysis: Identifies streaming patterns in captured data
- Data Processing: Structures captured data into clean JSON format
The system detects multiple streaming response formats:
- Server-Sent Events (SSE):
data: {"content": "..."}
- OpenAI-style chunks:
data: {"choices": [{"delta": {"content": "..."}}]}
- Event streams:
event: message\ndata: {...}
- JSON streaming: Objects with
token
,delta
,content
fields - Custom formats:
f:{...}
,0:"..."
,e:{...}
patterns - WebSocket messages: Binary/text frames with streaming data
- Chunked responses: Transfer-encoding: chunked with streaming content
webscout-mcp/
├── src/
│ ├── index.js # Main MCP server implementation
│ └── tools/ # Specialized tool modules
│ ├── reverseEngineer.js # Tool exports and coordination
│ ├── reverseEngineerChat.js # Automated chat analysis
│ ├── sessionManagement.js # Browser session lifecycle
│ ├── visualInspection.js # Screenshots and page info
│ ├── interaction.js # Clicking and form filling
│ ├── navigation.js # URL navigation and tab switching
│ └── networkCapture.js # Network traffic monitoring
│ └── utilities/ # Shared utility functions
│ ├── browser.js # Browser automation utilities
│ └── network.js # Network pattern detection
├── package.json # Dependencies and scripts
├── mcp-config.json # MCP client configuration example
└── README.md # This documentation
Variable | Description | Default |
---|---|---|
NODE_ENV |
Environment mode | development |
DEBUG |
Enable debug logging | false |
Update your MCP client's configuration file:
{
"mcpServers": {
"webscout-mcp": {
"command": "npx",
"args": ["-y", "webscout-mcp"],
"env": {
"NODE_ENV": "production"
}
}
}
}
Or for VS Code MCP configuration (mcp.json
):
{
"servers": {
"webscout-mcp": {
"command": "npx",
"args": ["-y", "webscout-mcp"],
"type": "stdio"
}
}
}
- Fork the repository
- Create a feature branch:
git checkout -b feature-name
- Make your changes and add tests
- Run tests:
npm test
- Submit a pull request
- Follow ES6+ syntax and modern JavaScript practices
- Add JSDoc comments for new functions
- Test your changes with multiple chat interfaces
- Update documentation for new features
- Ensure code passes all tests
This project is licensed under the ISC License - see the LICENSE file for details.
- Built with the Model Context Protocol SDK
- Powered by Playwright for browser automation
- Inspired by the need for better web API discovery and testing tools
- Ethical Use: This tool is intended for API analysis and integration purposes only. Always respect website terms of service and robots.txt files.
- Rate Limiting: Some chat interfaces may have rate limits or CAPTCHAs that could interfere with analysis.
- Browser Dependencies: Playwright requires browser binaries to be installed for automation.
- Network Conditions: Results may vary based on network speed and target website performance.
"Browser not found" error
# Install Playwright browsers
npx playwright install
"Connection timeout" error
- Increase
captureWindowMs
parameter - Check network connectivity
- Verify target URL is accessible
"No streaming endpoints found"
- Try different test messages
- Increase capture window time
- Verify the chat interface doesn't require authentication
MCP connection issues
- Verify the absolute path in
mcp-config.json
- Ensure Node.js 18+ is installed
- Check MCP client logs for detailed errors
If you encounter issues or have questions:
- Check the Troubleshooting section
- Review existing Issues on GitHub
- Create a new Issue with detailed information
WebScout MCP - Your intelligent companion for web application reverse engineering and API discovery.
Made with ❤️ for developers, security researchers, and API enthusiasts