Skip to main content
Glama

NutriAI MCP Server

by frotaadriano
NutritionTable.tsx1.01 kB
import React from "react"; export default function NutritionTable({ data }:{data:{name:string;per100g:number;portion:number}[]}) { return ( <div style={{border:"1px solid #eee", borderRadius:12, padding:12, marginTop:16}}> <h3 style={{marginTop:0}}>Tabela Nutricional</h3> <table style={{width:"100%", borderCollapse:"collapse"}}> <thead> <tr> <th style={{textAlign:"left", borderBottom:"1px solid #eee"}}>Nutriente</th> <th style={{textAlign:"right", borderBottom:"1px solid #eee"}}>/100g</th> <th style={{textAlign:"right", borderBottom:"1px solid #eee"}}>Porção</th> </tr> </thead> <tbody> {data.map((n,i)=>( <tr key={i}> <td style={{padding:"6px 0"}}>{n.name}</td> <td style={{textAlign:"right"}}>{n.per100g}</td> <td style={{textAlign:"right"}}>{n.portion}</td> </tr> ))} </tbody> </table> </div> ) }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/frotaadriano/NutriAI'

If you have feedback or need assistance with the MCP directory API, please join our Discord server