卡路里追踪服务

mcpdev/ccxt
Hosted
3 Stars 2.7k 次浏览 小笨羊 更新于 2026-08-23
该服务暂未提供标准配置,请参考 README 手动接入

可用工具 (4 个)

该服务在 MCP 协议中暴露的工具,AI 可按需调用

add_meal 2 个参数 需填 2 项

必填参数:description、mealType

get_daily_summary 1 个参数

该工具无需必填参数,直接调用即可

get_weekly_report 1 个参数

该工具无需必填参数,直接调用即可

search_food 1 个参数 需填 1 项

必填参数:foodName

服务介绍

卡路里追踪服务

一款通过自然语言交互追踪每日卡路里摄入量的MCP服务器,提供餐食记录、每日总结、周报生成和食物搜索功能。

工具列表

本MCP服务封装下列工具,可让模型通过标准化接口调用以下功能:

工具名称 描述
add_meal Log a meal with food items and calories
get_daily_summary Get today's calorie intake summary
get_weekly_report Get weekly calorie consumption report
search_food Search for calorie information of a specific food

检查服务

工具在线测试: https://mcp.xiaobenyang.com/inspector/1777316659909635

服务配置

How to get XBY-APIKEY ?

Visit XiaoBenYang website https://xiaobenyang.com, register and get the APIKEY.

SSE

{
  "mcpServers": {
    "卡路里追踪服务": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "sse",
      "url": "https://mcp.xiaobenyang.com/1777316659909635/sse"
    }
  }
}

STREAMABLE HTTP

{
  "mcpServers": {
    "卡路里追踪服务": {
      "headers": {
        "XBY-APIKEY": "<YOUR_XBY_APIKEY>"
      },
      "type": "streamable_http",
      "url": "https://mcp.xiaobenyang.com/1777316659909635/mcp"
    }
  }
}

STDIO

{
    "mcpServers": {
        "卡路里追踪服务": {
          "command": "npx",
          "args": [
            "-y",
            "xiaobenyang-mcp"
          ],
          "env": {
            "XBY_APIKEY": "<YOUR_XBY_APIKEY>",
            "mcpId": "1777316659909635",
            "LOG_LEVEL": "info"
          },
          "transport": "stdio"
        }
      }
}

相关 MCP 服务