Home / MCP Tools / Triangle Solver (SSS / SAS / ASA / AAS)
Live MCP toolmath

Triangle Solver (SSS / SAS / ASA / AAS)

Solve all sides and angles of a triangle from any valid combination of three known values.

Free tier eligible — 500 calls/month with a free key from /pricing; x402 pay-per-call above quota.

Parameters

ParameterTypeRequiredDescription
anumberoptionalSide a
bnumberoptionalSide b
cnumberoptionalSide c
AnumberoptionalAngle A in degrees
BnumberoptionalAngle B in degrees
CnumberoptionalAngle C in degrees

Call it over MCP (JSON-RPC 2.0)

curl -s https://wingmanprotocol.com/mcp \
  -H 'Content-Type: application/json' \
  -H 'Accept: application/json, text/event-stream' \
  -d '{"jsonrpc": "2.0", "id": 1, "method": "tools/call", "params": {"name": "triangle_solver", "arguments": {"a": 100, "b": 100, "c": 100}}}'

Or plain HTTP

curl -s https://wingmanprotocol.com/tools/triangle_solver \
  -H 'Content-Type: application/json' \
  -d '{"a": 100, "b": 100, "c": 100}'

Try it live

Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/triangle_solver from your browser.

Related tools in Math

math
Calendar Age Calculator
Compute calendar-accurate years/months/days between a birth date and an as-of date, plus total days and days until the…
math
Bayes' Theorem Calculator
Posterior probability P(H|E) from a prior, true-positive rate and false-positive rate.
math
Combinatorics Calculator (n!, nPr, nCr)
Factorial, permutations (nPr) and combinations (nCr) for non-negative integers.
math
Date Difference Calculator
Days, weeks, months and business days between two ISO dates.
math
Seeded Dice-Notation Roller
Roll tabletop dice notation ('2d6+3') deterministically from a required seed (sha256-derived, reproducible on any…
math
Duration Breakdown Calculator
Elapsed time between two ISO 8601 timestamps broken into weeks/days/hours/minutes/seconds, plus running totals.