reverse_engineer_chat
Analyze chat interfaces to identify streaming API endpoints by sending test messages and capturing network traffic patterns, including Server-Sent Events and WebSocket connections.
Instructions
Automatically reverse engineer a chat interface by navigating to the URL, sending a test message, and capturing all network traffic to identify streaming API endpoints. Returns discovered endpoints with their request/response patterns including Server-Sent Events (SSE), WebSocket connections, and chunked HTTP responses. Perfect for quick analysis of public chat interfaces without authentication.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
captureWindowMs | No | Duration in milliseconds to monitor network traffic after sending the message. Increase for slow-responding APIs (default: 8000) | |
message | No | The test message to send to trigger a streaming response from the chat AI (default: "hi") | hi |
url | Yes | The complete URL of the chat interface to analyze (e.g., https://chat.example.com) |