We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jrklein343-svg/restaurant-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import type { OpenTableSearchResult, OpenTableSlot } from './types.js';
export declare class OpenTableClient {
private client;
constructor();
search(query: string, location: string, _cuisine?: string): Promise<OpenTableSearchResult[]>;
getAvailability(restaurantId: number, date: string, partySize: number): Promise<OpenTableSlot[]>;
private buildBookingUrl;
getBookingUrl(restaurantId: number, date: string, time: string, partySize: number): Promise<string>;
}
export declare const openTableClient: OpenTableClient;