WingMan Protocol Home Install Pricing All tools Live MCP tool developer Great-Circle Distance (haversine) Distance (km/mi/nautical) and initial bearing between two lat/lon points.
Free tier eligible — 500 calls/month with a free key from /pricing ; x402 pay-per-call above quota.
Parameters Parameter Type Required Description lat1number required Latitude of point 1 (-90..90) lon1number required Longitude of point 1 (-180..180) lat2number required Latitude of point 2 (-90..90) lon2number required Longitude of point 2 (-180..180)
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": "haversine", "arguments": {"lat1": 100, "lon1": 100, "lat2": 100, "lon2": 100}}}' Or plain HTTP curl -s https://wingmanprotocol.com/tools/haversine \
-H 'Content-Type: application/json' \
-d '{"lat1": 100, "lon1": 100, "lat2": 100, "lon2": 100}' Try it live Edit the JSON and run it — this POSTs to https://wingmanprotocol.com/tools/haversine from your browser.
Run tool This tool is x402-metered — agents pay per call with USDC on Base. The 402 response below is the standard x402 payment-requirements envelope: sign the EIP-3009 authorization and retry with the
X-Payment header, or
get a free key at /pricing (500 calls/month, no card, no crypto).
Related tools in Developer developer
ANSI Escape Sequence Stripper
Remove ECMA-48 CSI (color/cursor) and OSC (hyperlink/title) terminal escape sequences from text, returning the…
developer
Number Base Converter
Convert an integer between bases 2-36, with binary/octal/decimal/hex forms.
developer
Bitwise Operations
AND, OR, XOR, NOT, shift, and popcount on integers with configurable bit width.
developer
Business-Day Calculator
Count workdays between two dates, or add N business days to a date — skipping weekends and holidays.
developer
Card Brand Detector
Luhn-validate a card number and detect its network brand (Visa/Mastercard/Amex/Discover/Diners/JCB/UnionPay) from IIN…
developer
Checksum Validator
Validate or compute check digits for IBAN, ISBN-10, and ISBN-13 identifiers.