UNPKG

mcp-open-food-facts

Version:

MCP server to use Open Food Facts API

16 lines (10 loc) 269 B
import { Product } from "./open-food-facts.type"; export type SearchProductByNameResponse = { products: Product[]; } export type SearchProductByBarcodeResponse = { product: Product; } export type GetProductByIdResponse = { product: Product; }