Sponsored by Deepsite.site

Huckleberry Mcp

Created By
KenLSM15 days ago
Huckleberry MCP server for Claude, Cursor, and other AI assistants. Query and log baby sleep, feeds, diapers, growth, pumping, and solids.
Overview

npm version npm downloads

Huckleberry MCP Server

Unofficial Huckleberry baby tracker MCP server for Claude, Cursor, VS Code, and other AI assistants. Query and log baby sleep, feeds, diapers, pumping, solids, potty, and growth records.

Expose Huckleberry's data (sleep, feeding, growth, diapers, solids) directly in Claude Desktop, or integrate the MCP server into other AI applications.

Installation

Requirements

  • Node.js 18+ (CI runs on Node 24)
  • npm 9+

Quick Start

npm install -g node-huckleberry-mcp

Or use directly via npx:

npx node-huckleberry-mcp

From source

git clone https://github.com/KenLSM/node-huckleberry-mcp.git
cd node-huckleberry-mcp
npm install
npm run build
node dist/index.js

Configuration

Environment Variables

The server reads credentials from environment variables:

HUCKLEBERRY_EMAIL=you@example.com
HUCKLEBERRY_PASSWORD=your-password
HUCKLEBERRY_TIMEZONE=America/New_York

Create a .env file in your project root (see .env.example for a template):

cp .env.example .env
# Edit .env with your Huckleberry credentials

Note: Never commit .env to version control. The .gitignore already excludes it.

Claude Desktop Integration

To use this server with Claude Desktop, add it to your claude_desktop_config.json:

macOS/Linux: ~/.config/Claude/claude_desktop_config.json
Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "huckleberry": {
      "command": "npx",
      "args": ["node-huckleberry-mcp"],
      "env": {
        "HUCKLEBERRY_EMAIL": "you@example.com",
        "HUCKLEBERRY_PASSWORD": "your-password",
        "HUCKLEBERRY_TIMEZONE": "America/New_York"
      }
    }
  }
}

After updating the config, restart Claude Desktop. The Huckleberry tools will appear in the tool list.

Tools

The server exposes 24 tools across 6 categories. (Active-session sleep/feed timers — start_sleep, pause_feeding, etc. — are not implemented; use the explicit log_* tools to record completed events.)

Child Management (2)

ToolInputOutput
get_userUser profile + child UID list
get_childchild_uidChild profile (childsName, gender, birthdate)

Sleep (3)

ToolInputPurpose
log_sleepchild_uid, start, end (epoch s), notes?Log a completed sleep session
get_sleep_historychild_uid, limit?Recent sleep sessions (incl. id)
edit_sleepchild_uid, interval_id, + any of start/duration/notesEdit an existing sleep entry

Feeding (8)

ToolInputPurpose
log_nursingchild_uid, start, left_duration?, right_duration?, last_side?, notes?Log a nursing session
log_bottlechild_uid, start, amount, bottle_type, units, notes?Log a bottle feeding
log_solidschild_uid, start, notes?Log a solids feeding
log_pumpchild_uid, start, left_amount/right_amount or total_amount, units, duration?, notes?Log a pumping session
list_pump_intervalschild_uid, limit?Recent pump sessions (incl. id)
get_feed_historychild_uid, limit?Recent feeds (incl. id), newest first
edit_feedchild_uid, interval_id, + any of start/amount/bottle_type/units/left_duration/right_duration/last_side/notesEdit an existing feed entry
edit_pumpchild_uid, interval_id, + any of start/left_amount/right_amount/units/duration/notesEdit an existing pump entry

Diaper (4)

ToolInputPurpose
log_diaperchild_uid, mode (pee/poo/both/dry), start, color?, consistency?, pee_amount?, poo_amount?, notes?Log a diaper change
log_pottychild_uid, mode (pee/poo), start, notes?Log potty training activity
get_diaper_historychild_uid, limit?Diaper + potty history (incl. id)
edit_diaperchild_uid, interval_id, + any of start/mode/color/consistency/pee_amount/poo_amount/notesEdit an existing diaper/potty entry

Growth (4)

ToolInputPurpose
log_growthchild_uid, weight?, height?, head?, units? (metric/imperial), start?, notes?Log a growth measurement
get_latest_growthchild_uidMost recent growth measurement (incl. id)
get_growth_historychild_uid, limit?Growth history (incl. id)
edit_growthchild_uid, entry_id, + any of start/weight/height/head/units/notesEdit an existing growth measurement

Solids — custom foods (3)

ToolInputPurpose
list_curated_foodsFetch the curated food database
list_custom_foodschild_uidList custom foods for a child
create_custom_foodchild_uid, name, category?, allergens?, notes?Create a custom food entry

All start/end inputs are epoch seconds. Times are stored with a timezone offset derived from HUCKLEBERRY_TIMEZONE.

Every log_* tool accepts an optional free-text notes field, which is stored on the entry and returned by the matching history/get_* tool (each read entry includes its Firestore id). The edit_* tools (edit_sleep, edit_feed, edit_pump, edit_diaper, edit_growth) update notes and other fields on an existing entry — pass the id/interval_id/entry_id from the matching read.

Prompts

The server also exposes MCP prompts (slash-command-style templates in clients that support them): huckleberry_usage (loads the usage conventions), daily_summary (date?), and log_event (event).

Agent skill

skills/huckleberry/SKILL.md teaches an assistant how to use these tools correctly (child resolution, natural-language time → epoch seconds, units, confirm-before-write). Copy it into your Claude skills directory to make the MCP smoother to use.

Development

Scripts

npm run build            # TypeScript → JavaScript (tsc)
npm run lint             # Lint with oxlint
npm run lint:fix         # Lint and auto-fix
npm run format           # Format with oxfmt
npm run format:check     # Check formatting without changes
npm test                 # Run unit tests (Vitest)
npm run test:watch       # Watch mode for tests
npm run test:integration # Live tests (needs HUCKLEBERRY_* creds; skipped otherwise). Read-only by default; set HUCKLEBERRY_ALLOW_WRITES=1 to also run the log_*→delete write round-trip (test account only)
npm run inspect:schema   # Dump real Firestore shapes (needs creds) — see docs/integration-testing.md
npm run smoke            # Build + run the MCP server smoke test
npm run dev              # Run in dev mode (tsx)

Toolchain

  • TypeScript 5.3+ with strict mode
  • oxc (oxlint + oxfmt) — fast, Rust-based linting & formatting
  • Vitest — unit test runner
  • Zod — runtime data validation
  • Firebase JS SDK — Firestore + Auth

Architecture

src/
├── auth/            # Authentication (T1.1)
├── client/          # Huckleberry API operations (T1.2–T1.9)
├── models/          # Zod schemas for Firestore docs (T1.3)
├── server/          # MCP server framework (T2.1–T2.2)
├── tools/           # MCP tool implementations (T2.3–T2.8)
├── __tests__/       # Unit & smoke tests
└── index.ts         # Entry point

See AGENTS.md for architecture details and conventions.

Testing

Unit tests are in src/__tests__/ and use Vitest with Firebase mocked:

npm test

Run a single test file:

npm test -- models.test.ts

Watch mode:

npm run test:watch

Live integration (gated) validates against a real account and is skipped without credentials. It is read-only by default; an opt-in log_*→delete write round-trip runs only with HUCKLEBERRY_ALLOW_WRITES=1 (use a test account) — see docs/integration-testing.md:

# read-only schema validation
HUCKLEBERRY_EMAIL=HUCKLEBERRY_PASSWORD=npm run test:integration

# also exercise log_*→delete writes (test account only)
HUCKLEBERRY_EMAIL=HUCKLEBERRY_PASSWORD=HUCKLEBERRY_ALLOW_WRITES=1 npm run test:integration

Licensing & Attribution

This project is a Node.js port of two MIT-licensed projects:

This port includes substantial design and implementation from both upstream projects.

Safety & Privacy

  • No data is stored locally. All operations are authenticated reads/writes to your Huckleberry Firestore database.
  • Credentials are environment-based. Never commit .env or hardcode credentials.
  • This is an unofficial client of a third-party service; the API is reverse-engineered and may change.

Support

  • Documentation: See AGENTS.md for contributor guidance.
  • Issues: Report bugs or request features on GitHub Issues.
  • Upstream: For questions about Huckleberry data or API changes, see the original Python projects.

Built with ❤️ as a Node/TypeScript port of py-huckleberry-api and py-huckleberry-mcp.

Server Config

{
  "mcpServers": {
    "huckleberry": {
      "command": "npx",
      "args": [
        "node-huckleberry-mcp"
      ],
      "env": {
        "HUCKLEBERRY_EMAIL": "you@example.com",
        "HUCKLEBERRY_PASSWORD": "your-password",
        "HUCKLEBERRY_TIMEZONE": "America/New_York"
      }
    }
  }
}
Recommend Servers
TraeBuild with Free GPT-4.1 & Claude 3.7. Fully MCP-Ready.
Serper MCP ServerA Serper MCP Server
Zhipu Web SearchZhipu Web Search MCP Server is a search engine specifically designed for large models. It integrates four search engines, allowing users to flexibly compare and switch between them. Building upon the web crawling and ranking capabilities of traditional search engines, it enhances intent recognition capabilities, returning results more suitable for large model processing (such as webpage titles, URLs, summaries, site names, site icons, etc.). This helps AI applications achieve "dynamic knowledge acquisition" and "precise scenario adaptation" capabilities.
Tavily Mcp
ChatWiseThe second fastest AI chatbot™
Playwright McpPlaywright MCP server
BlenderBlenderMCP connects Blender to Claude AI through the Model Context Protocol (MCP), allowing Claude to directly interact with and control Blender. This integration enables prompt assisted 3D modeling, scene creation, and manipulation.
CursorThe AI Code Editor
Amap Maps高德地图官方 MCP Server
DeepChatYour AI Partner on Desktop
RedisA Model Context Protocol server that provides access to Redis databases. This server enables LLMs to interact with Redis key-value stores through a set of standardized tools.
MiniMax MCPOfficial MiniMax Model Context Protocol (MCP) server that enables interaction with powerful Text to Speech, image generation and video generation APIs.
Jina AI MCP ToolsA Model Context Protocol (MCP) server that integrates with Jina AI Search Foundation APIs.
Y GuiA web-based graphical interface for AI chat interactions with support for multiple AI models and MCP (Model Context Protocol) servers.
Visual Studio Code - Open Source ("Code - OSS")Visual Studio Code
WindsurfThe new purpose-built IDE to harness magic
Howtocook Mcp基于Anduin2017 / HowToCook (程序员在家做饭指南)的mcp server,帮你推荐菜谱、规划膳食,解决“今天吃什么“的世纪难题; Based on Anduin2017/HowToCook (Programmer's Guide to Cooking at Home), MCP Server helps you recommend recipes, plan meals, and solve the century old problem of "what to eat today"
Baidu Map百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
AiimagemultistyleA Model Context Protocol (MCP) server for image generation and manipulation using fal.ai's Stable Diffusion model.
EdgeOne Pages MCPAn MCP service designed for deploying HTML content to EdgeOne Pages and obtaining an accessible public URL.
MCP AdvisorMCP Advisor & Installation - Use the right MCP server for your needs