Ciqual Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Ciqual Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
<div align="center">
An MCP (Model Context Protocol) server providing SQL access to the ANSES Ciqual French food composition database. Query nutritional data for over 3,000 foods with full-text search support.
ANSES Ciqual Database
<a href="https://glama.ai/mcp/servers/@zzgael/ciqual-mcp"> <img width="380" height="200" src="https://glama.ai/mcp/servers/@zzgael/ciqual-mcp/badge" alt="ANSES Ciqual Server MCP server" /> </a>
</div>
pip install ciqual-mcpuvx ciqual-mcpgit clone https://github.com/zzgael/ciqual-mcp.git
cd ciqual-mcp
pip install -e .Add to your Claude Desktop configuration:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json Linux: ~/.config/Claude/claude_desktop_config.json
{
"mcpServers": {
"ciqual": {
"command": "uvx",
"args": ["ciqual-mcp"]
}
}
}Add to your Gemini CLI configuration file ~/.gemini/settings.json:
{
"mcpServers": {
"ciqual": {
"command": "uvx",
"args": ["ciqual-mcp"]
}
}
}Add to your Codex CLI configuration file ~/.codex/config.toml:
[mcp_servers.ciqual]
command = "uvx"
args = ["ciqual-mcp"]The server implements the Model Context Protocol and exposes a single query function:
# Start the server standalone (for testing)
ciqual-mcpfrom ciqual_mcp.data_loader import initialize_database
# Initialize/update the database
initialize_database()
# Then use SQLite directly
import sqlite3
conn = sqlite3.connect("~/.ciqual/ciqual.db")
cursor = conn.execute("SELECT * FROM foods WHERE alim_nom_eng LIKE '%apple%'")queryThe server exposes a single MCP function for executing SQL queries on the Ciqual database.
#### Function Signature
async def query(sql: str) -> list[dict]#### Parameters
foods_fts table#### Returns
"error" key if query fails#### Error Handling The function returns an error dictionary in these cases:
{"error": "Database not initialized..."}{"error": "Only SELECT queries are allowed for safety."}{"error": "SQL error: [details]"}{"error": "Table not found. Available tables: foods, nutrients, composition, foods_fts, food_groups"}#### Example Usage in MCP Context
{
"method": "query",
"params": {
"sql": "SELECT f.alim_nom_eng, n.const_nom_eng, c.teneur, n.unit FROM foods f JOIN composition c ON f.alim_code = c.alim_code JOIN nutrients n ON c.const_code = n.const_code WHERE f.alim_nom_eng LIKE '%apple%' AND n.const_code IN (328, 25000, 31000)"
}
}#### Response Example
[
{
"alim_nom_eng": "Apple, raw",
"const_nom_eng": "Energy",
"teneur": 52.0,
"unit": "kcal/100g"
},
{
"alim_nom_eng": "Apple, raw",
"const_nom_eng": "Protein",
"teneur": 0.3,
"unit": "g/100g"
}
]#### foods - Food items
alim_code (INTEGER, PK): Unique food identifieralim_nom_fr (TEXT): French namealim_nom_eng (TEXT): English namealim_grp_code (TEXT): Food group code#### nutrients - Nutrient definitions
const_code (INTEGER, PK): Unique nutrient identifierconst_nom_fr (TEXT): French nameconst_nom_eng (TEXT): English nameunit (TEXT): Measurement unit (g/100g, mg/100g, etc.)#### composition - Nutritional values
alim_code (INTEGER): Food identifierconst_code (INTEGER): Nutrient identifierteneur (REAL): Value per 100gcode_confiance (TEXT): Confidence level (A/B/C/D)#### foods_fts - Full-text search Virtual table for fuzzy matching with French/English names
| Category | Code | Nutrient | Unit |
|---|---|---|---|
| Energy | 327 | Energy | kJ/100g |
| 328 | Energy | kcal/100g | |
| Macros | 25000 | Protein | g/100g |
| 31000 | Carbohydrates | g/100g | |
| 40000 | Fat | g/100g | |
| 34100 | Fiber | g/100g | |
| 32000 | Sugars | g/100g | |
| Minerals | 10110 | Sodium | mg/100g |
| 10200 | Calcium | mg/100g | |
| 10260 | Iron | mg/100g | |
| 10190 | Potassium | mg/100g | |
| Vitamins | 55400 | Vitamin C | mg/100g |
| 56400 | Vitamin D | µg/100g | |
| 51330 | Vitamin B12 | µg/100g |
-- Find foods by name
SELECT * FROM foods WHERE alim_nom_eng LIKE '%orange%';
-- Fuzzy search (handles typos)
SELECT * FROM foods_fts WHERE foods_fts MATCH 'orang*';-- Get vitamin C content for oranges
SELECT f.alim_nom_eng, c.teneur as vitamin_c_mg
FROM foods f
JOIN composition c ON f.alim_code = c.alim_code
WHERE f.alim_nom_eng LIKE '%orange%'
AND c.const_code = 55400;
-- Find foods highest in protein
SELECT f.alim_nom_eng, c.teneur as protein_g
FROM foods f
JOIN composition c ON f.alim_code = c.alim_code
WHERE c.const_code = 25000
ORDER BY c.teneur DESC
LIMIT 10;
-- Compare macros for different foods
SELECT
f.alim_nom_eng as food,
MAX(CASE WHEN c.const_code = 25000 THEN c.teneur END) as protein_g,
MAX(CASE WHEN c.const_code = 31000 THEN c.teneur END) as carbs_g,
MAX(CASE WHEN c.const_code = 40000 THEN c.teneur END) as fat_g,
MAX(CASE WHEN c.const_code = 328 THEN c.teneur END) as calories_kcal
FROM foods f
JOIN composition c ON f.alim_code = c.alim_code
WHERE f.alim_nom_eng IN ('Apple, raw', 'Banana, raw', 'Orange, raw')
AND c.const_code IN (25000, 31000, 40000, 328)
GROUP BY f.alim_code, f.alim_nom_eng;-- Find low-sodium foods (<100mg/100g)
SELECT f.alim_nom_eng, c.teneur as sodium_mg
FROM foods f
JOIN composition c ON f.alim_code = c.alim_code
WHERE c.const_code = 10110
AND c.teneur < 100
ORDER BY c.teneur ASC;
-- High-fiber foods (>5g/100g)
SELECT f.alim_nom_eng, c.teneur as fiber_g
FROM foods f
JOIN composition c ON f.alim_code = c.alim_code
WHERE c.const_code = 34100
AND c.teneur > 5
ORDER BY c.teneur DESC;Data is sourced from the official ANSES Ciqual database:
The database is automatically updated yearly when the server starts (data hasn't changed since 2020, so yearly updates are sufficient).
MIT License - See LICENSE file for details
Contributions are welcome! Please feel free to submit a Pull Request.
# Install development dependencies
pip install -e .
pip install pytest pytest-asyncio
# Run unit tests
python -m pytest tests/test_server.py -v
# Run functional tests (requires database)
python -m pytest tests/test_functional.py -v~/.ciqual/ directorypython -m ciqual_mcp.data_loader~/.ciqual/ciqual.db and restartDeveloped by Gael Debost as part of GPT Workbench, a multi-LLM interface for medical research developed by Ideagency.
Data provided by ANSES (Agence nationale de sécurité sanitaire de l'alimentation, de l'environnement et du travail).
If you use this tool in your research, please cite:
@software{ciqual_mcp,
title = {ANSES Ciqual MCP Server},
author = {Gael Debost},
year = {2025},
url = {https://github.com/zzgael/ciqual-mcp}
}~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.