# US Corporate Tax Calculator MCP MCP

> US Corporate Tax Calculator estimates federal and state income taxes for businesses. It lets you compare tax burdens across C-Corp, S-Corp, and LLC structures. You can also get precise tax breakdowns for single profit amounts or retrieve hardcoded rates for any specific US state.

## Overview
- **Category:** finance
- **Price:** Free
- **Tags:** tax, corporate, usa, accounting, finance-tools, profitability

## Description

Setting up a new business requires knowing the real cost of doing business—and that starts with taxes. Trying to calculate corporate liability across multiple states and legal entities is tedious work, forcing manual lookups of varying state tax codes. This MCP gives you a specialized calculation engine to handle that complexity. You feed it your profit figures and tell it where your company operates. It handles the comparison between different structures, like C-Corp versus LLC, providing clear financial breakdowns for every jurisdiction involved. If you're already using Vinkius for other automation needs, connecting this MCP gives your agent a powerful finance toolset right alongside your messaging or data retrieval capabilities.

## Tools

### calculate_tax_liability
Calculates and details the federal, state, and total taxes owed for a specific profit amount in a given state.

### compare_business_structures
Provides a side-by-side comparison of tax burdens for different business structures like C-Corp, S-Corp, and LLC.

### get_state_tax_rate
Retrieves the hardcoded corporate income tax rate required for a specific US state.

## Prompt Examples

**Prompt:** 
```
What is the corporate tax rate in California?
```

**Response:** 
```
The tool `get_state_tax_rate` can be used with 'CA' to retrieve the current hardcoded rate.
```

**Prompt:** 
```
Calculate the tax liability for a $500,000 profit in Texas.
```

**Response:** 
```
Using `calculate_tax_liability` with a profit of 500000 and stateCode 'TX' will provide the federal, state, and total tax breakdown.
```

**Prompt:** 
```
Compare C-Corp vs LLC for a $1,000,000 profit in New York.
```

**Response:** 
```
The `compare_business_structures` tool will analyze the tax implications for C-Corp, S-Corp, and LLC based on the $1,000,000 profit in NY.
```

## Capabilities

### Retrieve State Tax Rates
It fetches the specific corporate income tax rate required for any given US state.

### Calculate Full Tax Breakdown
It determines the total federal and state taxes owed based on a single profit amount.

### Compare Business Structures
It generates a side-by-side comparison of tax liabilities for different legal forms (C-Corp, S-Corp, LLC).

## Use Cases

### Expanding into a New State
A business analyst needs to know the tax impact in Florida before opening an office. They use `get_state_tax_rate` to pull the FL rate, then feed that result and their projected profit into `calculate_tax_liability`. This immediately tells them their required local capital.

### Deciding on Entity Status
The founders are debating if they should remain an LLC or convert to a C-Corp. They run the same projected $1M profit through `compare_business_structures`. The output shows clear tax savings with one structure over the other, making the decision concrete.

### Quick Tax Check
The CFO just finalized a quarterly projection of $750,000 profit. They run `calculate_tax_liability` to get an instant, detailed breakdown of federal and state tax obligations without having to pull up the specific state code first.

### Multi-State Modeling
A consultant needs a comparison for three different states (NY, CA, TX). They iterate by using `get_state_tax_rate` three times and then feeding those three rates into the comparative analysis tools.

## Benefits

- The `get_state_tax_rate` tool instantly pulls current corporate income tax rates. You don't waste time searching state revenue sites to find a rate; you just ask.
- Instead of running multiple spreadsheets, use `compare_business_structures`. It analyzes C-Corp, S-Corp, and LLC options simultaneously, showing which structure saves the most money on paper.
- Need a quick check? The `calculate_tax_liability` tool gives you a complete federal and state tax breakdown for any profit amount. You see exactly where your money goes.
- It eliminates manual cross-referencing. By structuring the calculation flow (Rate -> Liability -> Comparison), you get reliable, multi-step financial modeling outputs.
- The system accounts for the 21% flat federal rate and applies hardcoded state rules, ensuring a much higher degree of accuracy than quick online calculators.

## How It Works

The bottom line is that you move beyond simple calculation; you get strategic comparison data across multiple states and structures.

1. First, use `get_state_tax_rate` to confirm the specific corporate income tax rate for your target state.
2. Next, pass that jurisdictional data and a profit figure into `calculate_tax_liability` to get the initial total tax breakdown.
3. Finally, run `compare_business_structures` to analyze how changing the legal entity (e.g., switching from an LLC to a C-Corp) alters your overall tax burden.

## Frequently Asked Questions

**How do I use `get_state_tax_rate`?**
You simply pass the two-letter state code (e.g., 'NY' or 'CA') to this tool. It returns the hardcoded corporate income tax rate, so you don’t have to search for it manually.

**Should I use `compare_business_structures` first?**
No. Start by gathering rates with `get_state_tax_rate`. Then, feed those foundational rates into `compare_business_structures` to ensure the comparison is based on accurate jurisdictional data.

**What does `calculate_tax_liability` give me?**
`calculate_tax_liability` provides a full breakdown. For any given profit amount and state, it doesn't just give one number; it separates the federal tax, the state tax, and your final total.

**Is this MCP suitable for international taxes?**
No. This MCP is specialized for estimating US corporate liabilities only. It cannot calculate taxes based on non-US jurisdictions or complex multi-country nexus rules.

**If I use `get_state_tax_rate` with an invalid state code, what happens?**
The tool returns a specific validation error message. You must ensure the input adheres to standard US two-letter state abbreviations (e.g., 'NY', 'FL'). This prevents calculation failures.

**Does `calculate_tax_liability` account for complex deductions or credits?**
No, this MCP calculates tax based on the gross profit amount you give it. If your business has specific deductions or credits, run those calculations outside of the tool first, then input the final net taxable income.

**How scalable is `compare_business_structures` for large companies?**
The comparison runs efficiently by processing state data sequentially. It handles tax profile comparisons across all major US structures quickly, making it reliable even when analyzing multiple states.

**What format does the output from `calculate_tax_liability` provide?**
It returns a structured object that details three figures: federal liability, state liability, and the total combined tax. Your AI client can easily parse this data for precise reporting.