// Export all tools
export { whoami, whoamiTool, whoamiInputSchema, type WhoamiInput, type WhoamiResult } from './whoami.js';
export { lookup, lookupTool, lookupInputSchema, type LookupInput, type LookupResult } from './lookup.js';
export { verify, verifyTool, verifyInputSchema, type VerifyInput, type VerifyResult } from './verify.js';
export { send, sendTool, sendInputSchema, type SendInput, type SendResult } from './send.js';
export { inbox, inboxTool, inboxInputSchema, type InboxInput, type InboxResult, type InboxMessage } from './inbox.js';
export { reply, replyTool, replyInputSchema, type ReplyInput, type ReplyResult } from './reply.js';
// Import tool definitions for the array
import { whoamiTool } from './whoami.js';
import { lookupTool } from './lookup.js';
import { verifyTool } from './verify.js';
import { sendTool } from './send.js';
import { inboxTool } from './inbox.js';
import { replyTool } from './reply.js';
// Tool definitions for MCP server registration
export const toolDefinitions = [
whoamiTool,
lookupTool,
verifyTool,
sendTool,
inboxTool,
replyTool,
] as const;