ttbkk-mcp-server
Version:
MCP server providing access to Korean tteokbokki restaurant database with search, location-based queries, and brand information
20 lines • 723 B
TypeScript
import type { Brand } from '../types/database.js';
/**
* Get all brands with place count (실제 ttbkk-web useBrandList 기반)
* @returns Array of brands sorted by place count
*/
export declare function getBrandList(): Promise<Brand[]>;
/**
* Get specific brand details with hashtags
* @param brandId - Brand ID
* @returns Brand details with hashtags
*/
export declare function getBrandDetails(brandId: string): Promise<Brand>;
/**
* Search brands by name
* @param query - Search query for brand name
* @param limit - Maximum number of results
* @returns Array of matching brands
*/
export declare function searchBrands(query: string, limit?: number): Promise<Brand[]>;
//# sourceMappingURL=brand-list.d.ts.map