node-huckleberry-mcp
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.jsConfiguration
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 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)
Tool | Input | Output |
| — | User profile + child UID list |
|
| Child profile ( |
Sleep (3)
Tool | Input | Purpose |
|
| Log a completed sleep session |
|
| Recent sleep sessions (incl. |
|
| Edit an existing sleep entry |
Feeding (8)
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 |
Diaper (4)
Tool | Input | Purpose |
|
| Log a diaper change |
|
| Log potty training activity |
|
| Diaper + potty history (incl. |
|
| Edit an existing diaper/potty entry |
Growth (4)
Tool | Input | Purpose |
|
| Log a growth measurement |
|
| Most recent growth measurement (incl. |
|
| Growth history (incl. |
|
| Edit an existing 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 — pass theid/interval_id/entry_idfrom 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 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.
This server cannot be installed
Maintenance
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/KenLSM/node-huckleberry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server