node-huckleberry-mcp
This server provides an unofficial API for the Huckleberry baby tracker, enabling AI assistants to query, log, edit, and delete baby care records.
Child Management: Retrieve your user profile and child profiles (name, gender, birthdate).
Sleep Tracking: Log sleep sessions (start/end times), view history, edit, and delete entries.
Feeding Tracking: Log nursing sessions (left/right durations), bottle feeds (amount, type, units), and solids. View, edit, and delete feeding history.
Pumping Tracking: Record pumping sessions (left/right amounts, duration), view history, edit, and delete entries.
Diaper & Potty Tracking: Log diaper changes (pee, poo, both, or dry; with color, consistency, and amount) and potty training activity. View, edit, and delete entries.
Growth Tracking: Log measurements (weight, height, head circumference in metric or imperial), fetch the latest or full history, edit, and delete entries.
Food Database: Browse a curated food database, list child-specific custom foods, and create new custom food entries (with category, allergens, and notes).
Notes: All logged events support optional free-text notes.
Prompts: Pre-defined prompts for general usage, daily summaries, and generic event logging.
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-mcpOr use directly via npx:
npx node-huckleberry-mcpFrom source
git clone https://github.com/KenLSM/node-huckleberry-mcp.git
cd node-huckleberry-mcp
npm install
npm run build
node dist/index.jsRelated MCP server: whoop-ai-mcp
Configuration
Environment Variables
The server reads credentials from environment variables:
HUCKLEBERRY_EMAIL=you@example.com
HUCKLEBERRY_PASSWORD=your-password
HUCKLEBERRY_TIMEZONE=America/New_YorkCreate a .env file in your project root (see .env.example for a template):
cp .env.example .env
# Edit .env with your Huckleberry credentialsNote: 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 29 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.)
π Known bug: calling
log_sleepwhile a sleep session is running in the Huckleberry app ends that live session. Until it's fixed, stop the running session in the app first (or log afterwards). SeeTASKS.mdβ BUG1.
Child Management (2)
Tool | Input | Output |
| β | User profile + child UID list |
|
| Child profile ( |
Sleep (4)
Tool | Input | Purpose |
|
| Log a completed sleep session |
|
| Recent sleep sessions (incl. |
|
| Edit an existing sleep entry |
|
| Permanently delete a sleep entry |
Feeding (10)
Tool | Input | Purpose |
|
| Log a nursing session |
|
| Log a bottle feeding |
|
| Log a solids feeding |
|
| Log a pumping session |
|
| Recent pump sessions (incl. |
|
| Recent feeds (incl. |
|
| Edit an existing feed entry |
|
| Edit an existing pump entry |
|
| Permanently delete a feed entry |
|
| Permanently delete a pump entry |
Diaper (5)
Tool | Input | Purpose |
|
| Log a diaper change |
|
| Log potty training activity |
|
| Diaper + potty history (incl. |
|
| Edit an existing diaper/potty entry |
|
| Permanently delete a diaper/potty entry |
Growth (5)
Tool | Input | Purpose |
|
| Log a growth measurement |
|
| Most recent growth measurement (incl. |
|
| Growth history (incl. |
|
| Edit an existing growth measurement |
|
| Permanently delete a growth measurement |
Solids β custom foods (3)
Tool | Input | Purpose |
| β | Fetch the curated food database |
|
| List custom foods for a child |
|
| Create a custom food entry |
All
start/endinputs are epoch seconds. Times are stored with a timezoneoffsetderived fromHUCKLEBERRY_TIMEZONE.Every
log_*tool accepts an optional free-textnotesfield, which is stored on the entry and returned by the matching history/get_*tool (each read entry includes its Firestoreid). Theedit_*tools (edit_sleep,edit_feed,edit_pump,edit_diaper,edit_growth) updatenotesand other fields on an existing entry, and thedelete_*tools remove one β both take theid/interval_id/entry_idfrom the matching read. Deleting does not recompute the tracker'sprefs.last*summary, so a "most recent" view may briefly show a deleted entry until the next write.
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 pointSee AGENTS.md for architecture details and conventions.
Testing
Unit tests are in src/__tests__/ and use Vitest with Firebase mocked:
npm testRun a single test file:
npm test -- models.test.tsWatch mode:
npm run test:watchLive 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:integrationLicensing & Attribution
This project is a Node.js port of two MIT-licensed projects:
py-huckleberry-apiΒ© 2025 Woyken (GitHub, MIT License)py-huckleberry-mcpΒ© 2026 Huckleberry MCP Contributors (GitHub, MIT License)
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
.envor 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.
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that provides access to Cronometer nutrition data, enabling users to pull food logs, macro and micronutrient summaries, and biometric data into Claude or Cursor. It supports daily nutrition tracking and raw CSV exports by interfacing with the Cronometer web protocol.Last updated2615MIT
- Alicense-qualityAmaintenanceMCP server that connects AI assistants like Claude to WHOOP health data, enabling natural language queries about recovery, sleep, workouts, and more.Last updated122137MIT
- AlicenseAqualityCmaintenanceFirst MCP server for the Procare Connect API, enabling querying child care center data (attendance, enrollments, family balances, etc.) via natural language from Claude, Cursor, or any MCP client.Last updated16MIT
- Alicense-qualityDmaintenanceMCP server for xeve.io that enables AI assistants to query personal analytics including productivity, coding, health, music, and GitHub activity.Last updated15MIT
Related MCP Connectors
Hosted Amazon Seller Central and Amazon Ads MCP server for Claude, ChatGPT, Cursor, and agents.
Hosted MCP server connecting claude.ai, ChatGPT and other AI apps to your own computer
Hosted Amazon Seller and Vendor MCP server for Claude, ChatGPT, Cursor, Codex, Gemini, Copilot.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/KenLSM/node-huckleberry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server