Server data from the Official MCP Registry
US take-home pay calculator by state: federal and state tax, FICA, deductions.
US take-home pay calculator by state: federal and state tax, FICA, deductions.
Valid MCP server (3 strong, 3 medium validity signals). No known CVEs in dependencies. Package registry verified. Imported from the Official MCP Registry.
7 files analyzed · 1 issue found
Security scores are indicators to help you make informed decisions, not guarantees. Always review permissions before connecting any MCP server.
This plugin requests these system permissions. Most are normal for its category.
Add this to your MCP configuration file:
{
"mcpServers": {
"io-github-tresor4k-statetakehome-mcp": {
"args": [
"-y",
"statetakehome-mcp"
],
"command": "npx"
}
}
}From the project's GitHub README.
A Model Context Protocol (MCP) server that puts a full US paycheck-tax engine directly at your AI assistant's fingertips: federal brackets, all 50 states + DC, FICA, self-employment tax, and capital gains — all for the 2026 tax year, and all sourced from the same engine that powers statetakehome.com.
Why it's different: most take-home-pay calculators stop at "gross minus taxes." This one also understands the 2026 OBBBA (One Big Beautiful Bill Act) landscape — the current-year federal brackets and thresholds it ships with already reflect the post-OBBBA baseline, so estimates stay accurate as the rules that shaped the 2026 tax year continue to roll out.
No installation needed — run it with npx.
Add to your MCP config (claude_desktop_config.json or .mcp.json):
{
"mcpServers": {
"statetakehome": {
"command": "npx",
"args": ["-y", "statetakehome-mcp"]
}
}
}
Add to .cursor/mcp.json:
{
"mcpServers": {
"statetakehome": {
"command": "npx",
"args": ["-y", "statetakehome-mcp"]
}
}
}
Restart your client and the three tools below become available.
us_take_home_payNet pay for a US W-2 employee: federal income tax, state income tax (all 50 states + DC), Social Security, Medicare, Additional Medicare, and state-specific extras (CA SDI, OR transit tax, etc.). Handles pre-tax 401(k) and health-insurance deductions and returns a per-paycheck breakdown for every pay frequency.
Example call:
{
"gross": 75000,
"state": "CA",
"filingStatus": "single"
}
Response (abridged, from the live engine):
{
"result": {
"gross": 75000,
"federalTax": 7670,
"stateTax": 2940.85,
"socialSecurity": 4650,
"medicare": 1087.5,
"totalTax": 17323.35,
"takeHome": 57676.65,
"effectiveRate": 0.2310,
"perPaycheck": { "biweekly": 2218.33, "monthly": 4806.39 }
}
}
The same input with "state": "TX" (no state income tax) returns stateTax: 0 and takeHome: 61592.5 — $3,915.85 higher on the same gross pay.
self_employment_taxSchedule SE self-employment tax (15.3% on 92.35% of net profit, split into the Social Security and Medicare portions), the 0.9% Additional Medicare surtax, federal income tax, an optional state income tax, and a quarterly estimated-payment figure.
Example call:
{
"netProfit": 90000,
"filingStatus": "single",
"state": "TX"
}
Response (abridged, from the live engine):
{
"result": {
"netProfit": 90000,
"seTax": 12716.6,
"seTaxDeduction": 6358.3,
"federalIncomeTax": 9571.17,
"totalTax": 22287.77,
"quarterlyEstimate": 5571.94,
"setAsidePct": 0.2477
}
}
capital_gains_taxFederal capital gains tax — long-term stacked 0%/15%/20% bands or short-term ordinary rates — plus the 3.8% Net Investment Income Tax (NIIT) above the MAGI threshold, and an optional state estimate (most states tax gains as ordinary income).
Example call:
{
"gain": 50000,
"ordinaryTaxableIncome": 80000,
"filingStatus": "single",
"term": "long"
}
Response (abridged, from the live engine):
{
"result": {
"gain": 50000,
"taxableGain": 50000,
"federalTax": 7500,
"niit": 0,
"totalTax": 7500,
"netProceeds": 42500,
"ltcgRate": 0.15
}
}
source block naming the underlying publication and a reference_url pointing to the matching calculator on the live site for further reading and methodology notes:
The calculation code in this package is the same engine that runs statetakehome.com, kept in sync by hand — it is not a reimplementation.
This tool produces estimates for planning purposes only. It is not tax advice. Tax situations vary; consult a licensed CPA or tax professional before making financial decisions.
MIT © tresor4k
Be the first to review this server!
by Modelcontextprotocol · Developer Tools
Web content fetching and conversion for efficient LLM usage
by Toleno · Developer Tools
Toleno Network MCP Server — Manage your Toleno mining account with Claude AI using natural language.
by mcp-marketplace · Developer Tools
Create, build, and publish Python MCP servers to PyPI — conversationally.