index.ts•473 B
import { fetchUrlTool, fetchUrl } from './fetchUrl.js';
import { fetchUrlsTool, fetchUrls } from './fetchUrls.js';
import { browserInstallTool, browserInstall } from './browserInstall.js';
// Export tool definitions
export const tools = [
fetchUrlTool,
fetchUrlsTool,
browserInstallTool
];
// Export tool implementations
export const toolHandlers = {
[fetchUrlTool.name]: fetchUrl,
[fetchUrlsTool.name]: fetchUrls,
[browserInstallTool.name]: browserInstall
};