# Fraction Calculator — REST API endpoint `fraction-calculator`

Add, subtract, multiply or divide two fractions, or simplify one. Accepts whole numbers (3), simple fractions (3/4), mixed numbers (2 1/2) and decimals (0.75). Returns the reduced fraction, the mixed-number form, the decimal value, and the steps. Exact integer arithmetic — no floating-point drift.

- Category: calculators
- MCP server: https://mcp.findutils.com/ (Streamable HTTP, no API keys, 120 req/min per IP)
- REST endpoint: POST https://api.findutils.com/api/tools/fraction-calculator/execute (no API keys, 60 req/min per IP)
- Reference page: https://findutils.com/api/fraction-calculator/
- Same tool on the other surface: https://findutils.com/mcp/fraction-calculator/

## Call the endpoint (verified example)

```bash
curl -X POST https://api.findutils.com/api/tools/fraction-calculator/execute \
  -H "Content-Type: application/json" \
  -d '{
    "a": "1/3",
    "b": "1/6",
    "operation": "add"
  }'

# Parameter schema
curl https://api.findutils.com/api/tools/fraction-calculator
```

## Input schema

| Argument | Type | Required | Description |
|---|---|---|---|
| `a` | string | yes | First value: 3, 3/4, 2 1/2, or 0.75. |
| `b` | string | no | Second value, same formats. Omit it to simply reduce the first value. |
| `operation` | string (add \| subtract \| multiply \| divide) | no | What to do with the two values. Ignored when b is omitted. Default: `"add"`. |

Example arguments (verified):

```json
{
  "a": "1/3",
  "b": "1/6",
  "operation": "add"
}
```

OpenAPI 3.1 spec: https://findutils.com/api/openapi.json · Interactive docs: https://findutils.com/api/docs/

## Also an MCP tool

```bash
claude mcp add findutils --transport http https://mcp.findutils.com/
```

Then ask the client to call `findutils:fraction_calculator`. Full MCP reference: https://findutils.com/mcp/fraction-calculator/

---
Full catalog: GET https://api.findutils.com/api/tools · https://findutils.com/api/ · https://findutils.com/llms.txt
