UNPKG
mcp-open-food-facts
Version:
latest (1.0.0)
1.0.0
MCP server to use Open Food Facts API
mcp-open-food-facts
/
src
/
types
/
mcp.type.ts
16 lines
(10 loc)
•
269 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
{
Product
}
from
"./open-food-facts.type"
;
export
type
SearchProductByNameResponse
= {
products
:
Product
[]; }
export
type
SearchProductByBarcodeResponse
= {
product
:
Product
; }
export
type
GetProductByIdResponse
= {
product
:
Product
; }