@nannykeeper/mcp-server
v1.1.0
Published
MCP server for calculating US household employer (nanny) taxes. All 50 states. Works with Claude, ChatGPT, and any MCP-compatible AI agent.
Maintainers
Readme
@nannykeeper/mcp-server
MCP server for calculating US household employer (nanny) taxes. Works with Claude Desktop, Claude Code, and any MCP-compatible AI agent.
All 50 US states + DC — Federal income tax, Social Security, Medicare, FUTA, state unemployment, SDI, PFL, and local taxes.
Quick Setup (Claude Desktop)
Get a free API key at nannykeeper.com/developers/keys
Add to your Claude Desktop config (
~/Library/Application Support/Claude/claude_desktop_config.json):
{
"mcpServers": {
"nannykeeper": {
"command": "npx",
"args": ["@nannykeeper/mcp-server"],
"env": {
"NANNYKEEPER_API_KEY": "nk_live_YOUR_KEY"
}
}
}
}- Restart Claude Desktop and ask about nanny taxes!
Tools
calculate_nanny_taxes
Calculate employer and employee tax obligations for a household employee.
Parameters:
state(required) — 2-letter US state code (e.g., CA, NY, TX)annual_wages(required) — Annual wages paid to the employeepay_frequency(optional) — weekly, biweekly, semimonthly, or monthly (default: biweekly)
check_threshold
Check if annual wages cross the household employer tax threshold.
Parameters:
state(required) — 2-letter US state codeannual_wages(required) — Annual wages to checktax_year(optional) — Tax year (default: current year)
Examples
Example 1: Full tax calculation
You: How much would I owe in taxes if I pay my nanny $35,000/year in California?
Claude uses
calculate_nanny_taxeswithstate: "CA",annual_wages: 35000Claude: Based on NannyKeeper's calculation, here's your tax breakdown for paying a nanny $35,000/year in California:
Employer taxes (you pay): $2,838/year
- Social Security (6.2%): $2,170
- Medicare (1.45%): $507.50
- FUTA (0.6%): $42
- CA Unemployment (SDI/ETT): $119
Per biweekly paycheck: Your total cost is $1,456 ($1,346 gross pay + $110 employer taxes).
The employee also pays $2,678 in their share of FICA, withheld from each paycheck.
Example 2: Threshold check
You: I pay my babysitter $200/month. Do I need to worry about nanny taxes?
Claude uses
check_thresholdwithstate: "TX",annual_wages: 2400Claude: At $2,400/year, you're below the federal household employer threshold of $3,000 (for 2026). You don't need to pay Social Security or Medicare taxes, and you don't need to file Schedule H. If your babysitter's wages stay under $3,000 for the year, no action is needed.
Example 3: Comparing costs across states
You: I'm relocating from Texas to New York. How will that change what I owe for my nanny who makes $45,000?
Claude uses
calculate_nanny_taxesfor both TX and NY withannual_wages: 45000Claude: Moving from Texas to New York will increase your employer tax costs:
| | Texas | New York | |---|---|---| | Social Security | $2,790 | $2,790 | | Medicare | $652.50 | $652.50 | | FUTA | $42 | $42 | | State Unemployment | $0 | $133.65 | | Total employer taxes | $3,485 | $3,618 |
The difference is $133/year — New York has a state unemployment insurance (SUI) tax that Texas doesn't. Your nanny will also see New York state income tax withheld from their paychecks.
Key Facts
- FICA threshold (2026): $3,000/year — above this you must pay employer Social Security + Medicare
- Social Security: 6.2% employer + 6.2% employee (wage base $176,100)
- Medicare: 1.45% employer + 1.45% employee (no wage base)
- FUTA: 0.6% on first $7,000 per employee
- Schedule H: Filed with your personal 1040 tax return
Need More Than Calculations?
The free tier covers tax calculations (50/day). Upgrade to:
- Run payroll with year-to-date tracking
- Generate pay stubs and W-2s
- Process direct deposit via ACH
Plans start at $10/month. Learn more
Privacy Policy
This MCP server sends wage calculation requests (state, annual wages, pay frequency) to the NannyKeeper API. No personally identifiable information is collected or transmitted. API keys are used for authentication and rate limiting only.
Full privacy policy: nannykeeper.com/privacy
Support
- Email: [email protected]
- GitHub Issues: github.com/imaznation/nannykeeper/issues
- Documentation: nannykeeper.com/developers
- MCP Setup Guide: nannykeeper.com/developers/mcp
License
MIT
Built by NannyKeeper — the household employer payroll platform.
