#!/usr/bin/env node
export declare const VERSION = "0.1.1";
import { type CallToolResult, type Tool } from "@modelcontextprotocol/sdk/types.js";
export type ToolRegistration<T> = Tool & {
    handler: (args: T) => CallToolResult | Promise<CallToolResult>;
};
