UNPKG

@atlas-kitchen/atlas-mcp

Version:

Model Context Protocol server for Atlas restaurant management system - enables Claude to interact with restaurant orders, menus, and reports

11 lines 398 B
import { AtlasClient } from '../client.js'; import { AuthManager } from '../auth.js'; interface Tool { name: string; description: string; inputSchema: any; handler: (input: unknown) => Promise<any>; } export declare function createAuthTools(client: AtlasClient, authManager: AuthManager, reauthenticate: () => Promise<boolean>): Tool[]; export {}; //# sourceMappingURL=auth.d.ts.map