iNutriPlan Supplement Database MCP Server
Official6 toolsby okyalos76
MCP server exposing supplements database used by iNutriPlan.com
MCP server exposing supplements database from iNutriPlan.com for nutrition lookups.
Captured live from the server via tools/list.
search_supplements
Search the iHerb product database using a natural-language query, benefit keyword, ingredient name, or brand name. Uses the PostgreSQL GIN full-text search index first (fast, relevance-ranked), then falls back to a broader ILIKE scan if FTS yields no results.
Parameters (3)
- querystringrequired
Search term, e.g. "magnesium sleep support", "omega 3 fish oil", "vitamin D immune", or a brand name.
- min_ratingnumber
Minimum star rating filter (0.0–5.0). Default 4.0.
- limitinteger
Maximum results (1–60). Default 20.
get_supplement_detail
Retrieve complete details for a single iHerb product by its numeric product ID (visible in iHerb URLs, e.g. "72711" from https://www.iherb.com/pr/p/72711). Returns the full supplement facts panel (nutrients, amounts, % daily values), ingredients list, warnings, serving info, and the affiliate purchase link.
Parameters (1)
- product_idstringrequired
iHerb numeric product ID as a string, e.g. "72711".
search_by_ingredient
Find products that contain a specific ingredient or compound in their ingredients list (e.g. "ashwagandha", "CoQ10", "zinc bisglycinate"). Also returns evidence-graded research context from the ingredient registry when the ingredient is recognised — goals, mechanisms, evidence grade.
Parameters (2)
- ingredientstringrequired
Ingredient or compound name to search for.
- limitinteger
Maximum products to return (1–40). Default 20.
list_categories
Return all available iHerb product categories with their URL slugs and live product counts. Use the slug value with get_supplements_by_category to browse products within a specific category.
No parameters.
get_supplements_by_category
List top-rated in-stock products within a specific iHerb category. Use list_categories first to discover valid category slugs.
Parameters (3)
- category_slugstringrequired
Category slug, e.g. "vitamins", "supplements", "brain-cognitive", "sports", "magnesium-complex".
- min_ratingnumber
Minimum star rating (0.0–5.0). Default 4.0.
- limitinteger
Maximum results (1–60). Default 20.
get_ingredient_info
Look up evidence-graded research context for a supplement ingredient from the curated registry (99 ingredients). Returns canonical name, aliases, health goals, mechanisms of action, evidence grade (Strong / Moderate / Preliminary), research notes, and recommended iHerb search terms.
Parameters (1)
- namestringrequired
Ingredient name, alias, or health goal keyword, e.g. "magnesium", "ashwagandha", "sleep", "testosterone", "weight_loss".
README not available yet.
Install
Remote endpoint
Streamable HTTPHosted server - connect over the network, no local install.
https://mcp.inutriplan.com/mcpclaude_desktop_config.json
{
"mcpServers": {
"inutriplan-mcp": {
"command": "npx",
"args": [
"-y",
"mcp-remote",
"https://mcp.inutriplan.com/mcp"
]
}
}
}Desktop config is stdio-only; this bridges via mcp-remote. Native remote: Settings > Connectors.