Open Food Facts MCP Server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| PORT | No | The port number for HTTP transport mode. | 3000 |
| TRANSPORT | No | The transport mode for the server. Use 'stdio' for CLI/editors, 'http' for browser-based tools. | stdio |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| searchProductsC | Search products by name, brand, or category |
| getProductByBarcodeA | Get product details by barcode (EAN/UPC) |
| analyzeProductC | Get AI nutritional analysis of a product |
| compareProductsC | Compare two products using AI |
| suggestRecipesC | Get AI recipe suggestions using a product |
| searchByCategoryC | Search products within a specific food category (e.g., beverages, snacks, dairy, cereals) |
| searchByBrandC | Find all products from a specific brand |
| advancedSearchB | Advanced product search with multiple filters: category, brand, nutri-score, eco-score, NOVA group, allergen-free, labels, country |
| autocompleteB | Get autocomplete suggestions for categories, brands, labels, ingredients, allergens, or additives |
| getNutriScoreC | Get the Nutri-Score grade (A-E) for a product - quick health assessment at a glance |
| getEcoScoreB | Get the Eco-Score (environmental impact rating A-E) for a product |
| getAdditivesInfoA | List all additives in a product with their E-numbers and NOVA processing level |
| getAllergenCheckB | Check if a product contains a specific allergen (gluten, milk, eggs, nuts, peanuts, soy, fish, shellfish, etc.) |
| checkMultipleAllergensB | Check if a product contains any of multiple allergens at once |
| getProductAIQuestionsA | Get AI-generated questions about a product that need human verification (e.g., "Is this product organic?", "Does this contain gluten?") |
| getRandomAIQuestionsB | Get random AI-generated questions from Robotoff that need human verification - great for community contribution |
| getProductInsightsB | Get AI-generated insights about products (detected labels, categories, ingredients issues, etc.) |
| getInsightTypesB | Get a summary of available AI insight types in Robotoff |
| getProductPricesC | Get crowd-sourced price data for a specific product - see where it costs less |
| searchPricesC | Search for crowd-sourced price data with filters (barcode, currency, etc.) |
| getRecentPricesC | Get the most recently added price data from the community |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
| analyze-product | Get a detailed health analysis of any food product |
| compare-products | Compare two products to find the healthier option |
| find-healthy-alternatives | Find healthier alternatives to a product |
| check-allergens | Check if a product is safe for your allergies |
| whats-for-dinner | Get recipe ideas using a product |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| help | How to use the Open Food Facts tools - quick reference |
| nutriscore-guide | Understanding Nutri-Score health ratings (A-E) |
| ecoscore-guide | Understanding Eco-Score environmental ratings (A-E) |
| allergens-list | Common food allergens and where they hide |
| additives-guide | Understanding E-numbers and food additives |
| nova-guide | Understanding food processing levels (1-4) |
TDQS
Scored across 21 tools
Each tool has a clearly distinct purpose: search tools differ by scope (general, brand, category, advanced filters), nutritional/environmental checks are separate, AI insight tools are well-differentiated (questions vs. insights, per-product vs. random), and price tools cover different query patterns. No two tools are easily confused.
All tool names follow a consistent camelCase verb-noun pattern (e.g., 'searchByBrand', 'getEcoScore', 'analyzeProduct'). The verbs vary logically by action, and there is no mixing of naming conventions like snake_case or underscores.
With 21 tools, the set is slightly larger than typical but still well-scoped. Each tool covers a specific feature of the Open Food Facts database (search, nutrition, environment, allergens, AI insights, prices, recipes) without significant overlap or redundancy.
For a read-only query server, the tool set is comprehensive: it covers product lookup, multiple search dimensions, nutritional and environmental ratings, allergen checking, AI-driven insights, and pricing data. Missing write operations (create/update/delete) are outside the apparent scope, so only minor gaps exist (e.g., no direct list of all categories or brands, but autocomplete covers that).