Home / MCP Tools / Data Transfer Time Calculator
Live MCP tooldeveloper

Data Transfer Time Calculator

Transfer time from file size and bandwidth (decimal units, 1 byte = 8 bits).

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

Parameters

ParameterTypeRequiredDescription
size_valuenumberrequiredFile size value
size_unitstringoptionalSize unit One of: B, KB, MB, GB, TB
speed_valuenumberrequiredBandwidth value
speed_unitstringoptionalBandwidth unit One of: bps, Kbps, Mbps, Gbps

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": "data_transfer", "arguments": {"size_value": 100, "speed_value": 100}}}'

Or plain HTTP

curl -s https://wingmanprotocol.com/tools/data_transfer \
  -H 'Content-Type: application/json' \
  -d '{"size_value": 100, "speed_value": 100}'

Try it live

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

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.