#!/usr/bin/env node /** * Unbrowser Intelligence MCP Server * * A lightweight MCP server designed to work alongside AI browser tools * like Claude-in-Chrome, browser-use, and other LLM-driven browsers. * * This server provides intelligence tools that LLMs should try FIRST * before resorting to full browser automation: * * - unbrowser_get: Attempt to fetch content without browser automation * - unbrowser_check: Check what we know about a URL before browsing * * The idea: If Unbrowser can get the data via cache, API discovery, or * a direct HTTP fetch, the LLM saves time and the user doesn't see * browser windows opening and closing. * * Usage with Claude Desktop: * ```json * { * "mcpServers": { * "unbrowser-intelligence": { * "command": "npx", * "args": ["llm-browser", "--intelligence"] * } * } * } * ``` */ /** * Create and start the intelligence MCP server */ declare function main(): Promise; export { main as startIntelligenceServer }; //# sourceMappingURL=intelligence-server.d.ts.map