mcp-crawl4ai-ts
Version:
TypeScript MCP server for Crawl4AI - web crawling and content extraction
20 lines • 553 B
TypeScript
import { BaseHandler } from './base-handler.js';
import { JSExecuteEndpointOptions } from '../types.js';
export declare class UtilityHandlers extends BaseHandler {
executeJS(options: JSExecuteEndpointOptions): Promise<{
content: {
type: string;
text: string;
}[];
}>;
extractLinks(options: {
url: string;
categorize?: boolean;
}): Promise<{
content: {
type: string;
text: string;
}[];
}>;
}
//# sourceMappingURL=utility-handlers.d.ts.map