Diet / Meal Log MCP Server

Diet / Meal Log MCP Server

Enables users to log meals, track daily and weekly calorie intake, and manage diet records. Supports both local and network modes for flexible meal logging across devices.

Category
Visit Server

README

Diet / Meal Log MCP Server

食事ログを管理するMCP (Model Context Protocol) サーバーです。

機能

  • add_meal: 食事ログを追加
  • get_daily_summary: 指定日の食事ログと合計カロリーを取得
  • get_week_summary: 指定週の食事ログと合計カロリーを取得

必要な環境

  • Python 3.11以上
  • uv (推奨) または pip

セットアップ

1. uvを使う方法(推奨)

uvは高速なPythonパッケージマネージャーです。

# uvのインストール
curl -LsSf https://astral.sh/uv/install.sh | sh

# 仮想環境の作成(Python 3.11を自動ダウンロード)
uv venv --python 3.11

# 仮想環境の有効化
source .venv/bin/activate

# 依存関係のインストール
uv pip install -r requirements.txt

2. pipを使う方法

# Python 3.11以上がインストールされていることを確認
python --version

# 仮想環境の作成
python -m venv .venv

# 仮想環境の有効化
source .venv/bin/activate

# 依存関係のインストール
pip install -r requirements.txt

使い方

このサーバーは2つのモードで動作します:

モード1: ローカルモード(stdio)

Claude Desktopなどのローカルクライアント向け。

# 仮想環境を有効化
source .venv/bin/activate

# stdioモードで起動(デフォルト)
python server.py

Claude Desktopでの設定例

~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "diet-mcp": {
      "command": "/Users/soichiro.inatani/src/diet-mcp/.venv/bin/python",
      "args": ["/Users/soichiro.inatani/src/diet-mcp/server.py"],
      "env": {}
    }
  }
}

モード2: ネットワークモード(SSE)

別デバイスからアクセスする場合。

# 仮想環境を有効化
source .venv/bin/activate

# SSEモードで起動(ネットワーク経由)
python server.py --sse

サーバーは http://0.0.0.0:8000 で起動します。

他のデバイスからの接続

  1. サーバーのIPアドレスを確認
ifconfig | grep "inet " | grep -v 127.0.0.1
# 例: inet 192.168.0.184
  1. クライアント側の設定

Claude Desktopの設定ファイル ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "diet-mcp-remote": {
      "url": "http://192.168.0.184:8000/sse",
      "transport": "sse"
    }
  }
}

注意事項:

  • サーバーとクライアントが同じネットワーク内にある必要があります
  • ファイアウォールでポート8000を開放してください
  • インターネット経由でアクセスする場合は、適切なセキュリティ対策(認証、HTTPS化など)が必要です

データの保存

食事ログは ~/diet-mcp-meals.json に保存されます。

開発

プロジェクト構成

diet-mcp/
├── server.py           # MCPサーバー本体
├── meals.json          # 食事ログデータ(自動生成)
├── requirements.txt    # Python依存関係
├── .python-version     # Pythonバージョン指定
├── .venv/             # 仮想環境(git管理外)
└── README.md          # このファイル

チーム開発での環境共有

  1. .python-version でPythonバージョンを固定
  2. requirements.txt で依存関係を固定
  3. .venv/ はgit管理から除外(.gitignoreに追加)
# 新しいメンバーがリポジトリをクローンしたら
git clone <repository-url>
cd diet-mcp

# 環境構築
uv venv --python 3.11
source .venv/bin/activate
uv pip install -r requirements.txt

# サーバー起動
python server.py

ライセンス

このプロジェクトは自由に使用できます。

Recommended Servers

playwright-mcp

playwright-mcp

A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.

Official
Featured
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.

Official
Featured
Local
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.

Official
Featured
Local
TypeScript
VeyraX MCP

VeyraX MCP

Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.

Official
Featured
Local
Kagi MCP Server

Kagi MCP Server

An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.

Official
Featured
Python
graphlit-mcp-server

graphlit-mcp-server

The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.

Official
Featured
TypeScript
Qdrant Server

Qdrant Server

This repository is an example of how to create a MCP server for Qdrant, a vector search engine.

Official
Featured
Neon Database

Neon Database

MCP server for interacting with Neon Management API and databases

Official
Featured
Exa Search

Exa Search

A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.

Official
Featured
E2B

E2B

Using MCP to run code via e2b.

Official
Featured