ttbkk-mcp-server
Version:
MCP server providing access to Korean tteokbokki restaurant database with search, location-based queries, and brand information
23 lines • 939 B
TypeScript
import type { Place } from '../types/database.js';
/**
* Search for tteokbokki restaurants by query (실제 ttbkk-web usePlaceMap 기반)
* @param query - Search query (location, restaurant name, brand name, etc.)
* @param limit - Maximum number of results to return
* @returns Array of matching restaurants
*/
export declare function searchTteokbokkiRestaurants(query: string, limit?: number): Promise<Place[]>;
/**
* Get all restaurants in a bounding box (ttbkk-web usePlaceMap과 동일)
* @param bottomLeft - Bottom left coordinates
* @param topRight - Top right coordinates
* @param limit - Maximum number of results to return
* @returns Array of restaurants in the area
*/
export declare function getRestaurantsInArea(bottomLeft: {
latitude: number;
longitude: number;
}, topRight: {
latitude: number;
longitude: number;
}, limit?: number): Promise<Place[]>;
//# sourceMappingURL=restaurant-search.d.ts.map