Enterprise Browser Automation & Debugging Platform by YarlisAISolutions
Navigate pages, execute JavaScript, and interact with elements remotely through a secure API.
Capture full-page or viewport screenshots with automatic storage and retrieval capabilities.
Access console logs, network requests, and element inspection tools for comprehensive debugging.
Run Lighthouse audits for performance, accessibility, SEO, and best practices analysis.
Industry-standard Model Context Protocol for seamless integration with AI assistants.
Token-based authentication, rate limiting, and secure WebSocket connections.
Navigate to any URL and wait for page load completion
Execute JavaScript code in the browser context
Capture screenshots with various options for full page or viewport
Inspect DOM elements and get computed styles
Retrieve browser console logs, errors, and warnings
Get detailed network request and response information
Run comprehensive Lighthouse audits for performance, accessibility, SEO
Generate detailed debugging reports with all collected data
Configure your MCP client (Claude, Cline, etc.) with these settings:
{
"mcpServers": {
"rapidtriage": {
"type": "sse",
"url": "https://rapidtriage.me/sse",
"headers": {
"Authorization": "Bearer YOUR_AUTH_TOKEN"
},
"capabilities": {
"tools": true,
"resources": true,
"prompts": true
}
}
}
}
curl https://rapidtriage.me/health
curl -X POST https://rapidtriage.me/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_AUTH_TOKEN" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"remote_capture_screenshot","arguments":{"url":"https://example.com"}},"id":1}'
curl -X POST https://rapidtriage.me/mcp \
-H "Content-Type: application/json" \
-H "Authorization: Bearer YOUR_AUTH_TOKEN" \
-d '{"jsonrpc":"2.0","method":"tools/call","params":{"name":"remote_get_console_logs","arguments":{}},"id":1}'
// Install MCP SDK
// npm install @modelcontextprotocol/sdk
import { Client } from '@modelcontextprotocol/sdk/client/index.js';
import { SSETransport } from '@modelcontextprotocol/sdk/transport/sse.js';
// Initialize client
const transport = new SSETransport('https://rapidtriage.me/sse', {
headers: {
'Authorization': 'Bearer YOUR_AUTH_TOKEN'
}
});
const client = new Client({
name: 'my-app',
version: '1.0.0'
}, {
capabilities: {}
});
// Connect and use
await client.connect(transport);
// Take screenshot
const result = await client.callTool('remote_capture_screenshot', {
url: 'https://example.com',
fullPage: true
});
console.log('Screenshot URL:', result.screenshotUrl);
Authorization: Bearer YOUR_TOKEN
• MCP-compatible client (Claude, Cline)
• Node.js 18+ for SDK
• Modern browser for web access
• Stable internet connection
• Chrome/Chromium (latest)
• Firefox (latest)
• Safari 14+
• Edge (Chromium-based)
• REST/HTTP API
• Server-Sent Events (SSE)
• WebSocket (coming soon)
• GraphQL (roadmap)
Run end-to-end tests, capture visual regressions, and validate user flows across browsers.
Track Core Web Vitals, analyze load times, and identify performance bottlenecks.
Remote debugging for production issues, console log analysis, and network inspection.
Automated WCAG compliance checks, screen reader testing, and keyboard navigation validation.
Meta tag validation, structured data testing, and search engine optimization audits.
Automated screenshot generation for documentation, visual guides, and tutorials.
Interactive API documentation with request/response examples and testing interface.
Monitor system metrics, usage statistics, and manage your account settings.
Real-time system status, uptime monitoring, and service health checks.
Download OpenAPI specification for code generation and API client libraries.
Comprehensive guides, tutorials, and best practices for using RapidTriageME.
Source code, examples, issue tracking, and community contributions.
Install the RapidTriageME browser extension for enhanced debugging capabilities: