Tools Berry MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Tools Berry MCP ServerCompare take-home pay for $80k in Texas vs California"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Tools Berry MCP server
An MCP server that answers US paycheck and payroll-tax questions for 2026 with real arithmetic instead of a guess: take-home pay, bonus withholding, state comparisons, and per-state rate schedules for all 50 states and DC.
It is already hosted and free to use. You do not need to install or run anything.
Endpoint: https://mcp.tools-berry.com — Streamable HTTP, JSON-RPC 2.0 over POST.
Alias: https://tools-berry-mcp.edydaherz.workers.dev.
Connect
Claude Code
claude mcp add --transport http tools-berry https://mcp.tools-berry.comClaude.ai / Claude Desktop — Settings → Connectors → Add custom connector, and paste:
https://mcp.tools-berry.comCursor — in ~/.cursor/mcp.json (or .cursor/mcp.json in a project):
{
"mcpServers": {
"tools-berry": {
"url": "https://mcp.tools-berry.com"
}
}
}Anything else — it is plain JSON-RPC, so curl works:
curl -s https://mcp.tools-berry.com \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{
"name":"compute_take_home",
"arguments":{"state":"ohio","salary":80000}}}'That call returns a net of $63,294.38 on an $80,000 Ohio salary — the same number the matching page on the site shows, to the cent.
Related MCP server: Equity Comp Tax (ISO/NSO/RSU/QSBS); Concentration, Hedging and Equity Funding Optimizers
Tools
Tool | Answers | Required arguments |
| Full paycheck breakdown for a salary in one state: federal income tax, Social Security, Medicare, state income tax, state payroll programs, net annual/monthly/biweekly, effective rate |
|
| What is actually withheld from a bonus: the federal 22% supplemental rate (37% above $1,000,000), the state's bonus treatment, and FICA |
|
| Net pay on the same salary across several states, ranked best-first with each state's gap to the winner |
|
| One state's 2026 schedule: flat rate or bracket ladder, standard deduction, employee payroll programs, supplemental method, and the statute the figures come from |
|
state accepts a full name (Ohio), a two-letter code (OH), or a slug (ohio,
district-of-columbia). filingStatus is optional on every tool and defaults to single;
it accepts single, married, head_of_household, and the usual aliases (mfj, mfs, hoh).
Every response carries both readable text and a structuredContent object of raw numbers.
Probing it in a browser
The endpoint answers GETs so you can check it without a client:
Request | Returns |
| A JSON self-description: server info, protocol version, instructions, tool list |
|
|
| Executes a single read-only request and returns the JSON-RPC response |
The ?rpc= form is a convenience for smoke tests, not part of MCP. It exists because some
networks block *.workers.dev or drop POST probes, and a server nobody can reach is
indistinguishable from a server that is down.
curl -sG https://mcp.tools-berry.com \
--data-urlencode 'rpc={"jsonrpc":"2.0","id":1,"method":"tools/list"}'Design
No forked math.
tools.jsimportssrc/engine/paycheck-engine.jsandsrc/engine/bonus-tax.jsdirectly and feeds them the same data files the public pages are built from. Nothing is re-derived for the MCP layer; that layer only shapes input, picks a link, and formats text.test/test-mcp-server.jsasserts the server's answers equal the engine called directly, to the cent, across all 51 jurisdictions — so the server cannot quietly drift away from the site.No dependencies. The protocol surface needed here is
initialize,tools/list,tools/call, pluspingand the emptyresources/list/prompts/listprobes, so it is implemented by hand inmcp.jsrather than pulling in an SDK.npm installis a no-op;npm testruns on plain Node.Stateless and read-only. No auth, no session, no storage, no bindings, no writes. Nothing you send is retained.
Rate limit: 120 requests per minute per IP. Every call is a few microseconds of arithmetic, so the ceiling only has to stop a runaway loop.
Attribution built in. Every tool response ends with a source line and a deep link to the page on tools-berry.com that shows the same figure.
The numbers
Tax year 2026, all 50 states plus the District of Columbia. Covered: federal income tax, Social Security and Medicare (including the additional 0.9%), state income tax, and state employee payroll programs such as SDI and PFML. Figures are withholding-style estimates for a single job with no pre-tax deductions and no credits beyond the standard deduction. Local and city income taxes are not included. This is not tax advice and it is not a filed return.
get_state_rates returns a source field naming the statute or department schedule each
state's figures come from, so any number here can be traced back.
Provenance and refresh. The engine and the two data files are maintained on tools-berry.com and mirrored into this repository. The hosted server is deployed from the site's own repository, so this repo is the readable, reusable copy rather than the deployment source. When rates change on the site, the mirror is refreshed here. If you need a guarantee that you are on current figures, call the hosted endpoint.
Citation
If figures or code from here feed something you publish, please cite tools-berry.com. That request is the whole business model behind giving the engine away.
Deploy your own
You do not need to — the hosted instance is free and open. But if you want your own copy:
npx wrangler deployIt is a single Cloudflare Worker with no bindings and no secrets. wrangler.toml has the
custom-domain block commented out; uncomment it and point it at a hostname you control, or
just use the workers.dev URL wrangler prints.
License
MIT — see LICENSE. Copyright 2026 Edmond Daher.
This server cannot be installed
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
- AlicenseBqualityCmaintenance39 tax tools for US individual taxpayers — federal/state tax calculations, credits, deductions, retirement strategies, audit risk, and tax planning. All calculations run locally, no data leaves the machine. Supports TY2024 and TY2025 (One Big Beautiful Bill Act).443428MIT
- AlicenseAqualityBmaintenanceDeterministic US equity-compensation tax optimizer. Six tools cover ISO/AMT exercise scheduling, NSO sell-vs-hold, RSU vest-and-sell, single-stock concentration, protective put / zero-cost collar pricing, and Section 1202 QSBS qualification. Federal plus 50-state plus DC tax math.8795MIT
- AlicenseAqualityAmaintenanceTaiwan statutory payroll calculation — labor & health insurance, labor pension, 2nd-gen NHI supplementary premium, income-tax withholding, and old-age benefits. Sourced from official gazettes, verified against official sample data.91MIT
- Alicense-qualityBmaintenanceEnables AI agents to calculate US household employer (nanny) taxes for all 50 states plus DC, including Social Security, Medicare, FUTA, and state unemployment, through natural language.MIT
Related MCP Connectors
Current source-cited 2026 US tax constants and calculators for AI agents; every answer cites IRS.
Equity comp tax/trade optimizer: ISO/AMT exercise, NSO, RSU, QSBS, concentration, hedging. 50-state.
Source-backed Sri Lanka payslip tools for APIT/PAYE, EPF, ETF, stamp duty, and net pay.
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/edyda99/tools-berry-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server