@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 • 361 B
TypeScript
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 createOrderTools(client: AtlasClient, authManager: AuthManager): Tool[];
export {};
//# sourceMappingURL=orders.d.ts.map