{"name":"io.changenow/crypto-swap","slug":"changenow-crypto-swap","title":"ChangeNOW","description":"Quote, create and track cross-chain crypto swaps. Non-custodial exchange, no account, no KYC.","url":"https://mcp.market/server/changenow-crypto-swap","rating":null,"grade":"C","score":56,"certified":false,"status":"active","category":"finance","tags":["finance"],"presence":{"score":8,"stars":null,"forks":null,"downloads_week":null,"last_push_at":null,"license":null},"uptime":{"percent":100,"checks":7,"ok":7,"last_checked_at":"2026-09-21T03:06:02.495Z","last_ok_at":"2026-09-21T03:06:02.495Z","latency_ms":106},"claimed":false,"transport":"remote","callable_via_gateway":true,"default_price_micros":0,"repository":null,"website":"https://changenow.io","version":"2.1.1","remotes":[{"type":"streamable-http","url":"https://mcp.changenow.io/mcp"}],"packages":[],"tools":[{"name":"check_swap_status","description":"Follow an existing order by id: where it stands, what the deposit and payout amounts turned out to be, the transaction hashes, and a plain-language explanation of what the current stage means and what happens next. Use it after create_swap, and again whenever the user asks where their swap is.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"id":{"type":"string","description":"Order id returned by create_swap."},"sub_id":{"description":"Sub order id, for an order the provider split in two.","type":"string"}},"required":["id"],"additionalProperties":false}},{"name":"create_swap","description":"Create a real swap order and return the deposit address the user has to send funds to. This call moves no money by itself, but the order is real: it exists in support, it can expire, and a fixed rate is locked against it. Quote the swap first, validate the recipient address, and confirm the amount and the address with the user before calling this. If the user has not explicitly approved both, use swap_link instead and let them confirm on the page. The answer names who executes the order, and that has to be relayed: some orders are routed to a partner aggregator rather than ChangeNOW.","write_action":true,"price_micros":0,"input_schema":{"type":"object","properties":{"from":{"type":"string","description":"Asset the user sends, canonical id, for example \"eth.eth\"."},"to":{"type":"string","description":"Asset the user receives, canonical id, for example \"usdt.trx\"."},"address":{"type":"string","description":"Address that receives the swapped asset. Check it with validate_address first; a wrong network here loses the funds."},"amount_from":{"description":"Amount the user sends. Pass this or amount_to, never both.","type":"string"},"amount_to":{"description":"Amount the user wants to receive. Requires rate_id from quote_swap.","type":"string"},"memo":{"description":"Memo or destination tag for the recipient address, when the asset needs one.","type":"string"},"refund_address":{"description":"Where the deposit returns if the swap cannot complete. Strongly recommended: without it a failed swap needs support.","type":"string"},"refund_memo":{"description":"Memo for the refund address.","type":"string"},"rate_id":{"description":"The rate_id from quote_swap with rate_type \"fixed\". Required for a fixed rate order. It holds for about two minutes, so quote again right before this call if the user needed time to decide.","type":"string"},"contact_email":{"description":"Optional email for status notifications about this order.","type":"string","format":"email","pattern":"^(?!\\.)(?!.*\\.\\.)([A-Za-z0-9_'+\\-\\.]*)[A-Za-z0-9_+-]@([A-Za-z0-9][A-Za-z0-9\\-]*\\.)+[A-Za-z]{2,}$"},"promo_code":{"description":"Promo code to apply, if the user has one.","type":"string"}},"required":["from","to","address"],"additionalProperties":false}},{"name":"get_asset","description":"Everything needed to build a swap for one asset: the canonical id, the legacy ticker used in website links, decimals, whether a memo is required and what the receiving side calls it, the address format, the token contract and the warnings to relay to the user. Minimum and maximum amounts are not here because they belong to the pair, not to the asset: get them from quote_swap.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"asset":{"type":"string","description":"Canonical id \"usdt.trx\". A legacy ticker \"usdttrc20\" or a page slug \"tether-trc20\" is also accepted."}},"required":["asset"],"additionalProperties":false}},{"name":"list_assets","description":"Find the assets ChangeNOW can exchange and turn what the user said into a canonical asset id. Search by ticker, name or network, filter by network, by fiat or crypto, and by whether a fixed rate is possible. Always call this before quoting: the same ticker exists on several networks and only the canonical id \"ticker.network\" identifies one of them. When has_more is false the response is the complete answer and no paging is needed.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"q":{"description":"Substring search over canonical id, legacy ticker, name and network. Case insensitive. Example: \"usdt\", \"bitcoin\", \"tron\".","type":"string"},"network":{"description":"Keep only assets on this network, for example \"eth\", \"trx\", \"sol\".","type":"string"},"kind":{"default":"crypto","description":"crypto for swappable coins and tokens, fiat for currencies that can only start a purchase, all for both.","type":"string","enum":["crypto","fiat","all"]},"fixed_rate":{"default":false,"description":"Keep only assets the catalogue flags as fixed rate capable. The flag is a hint: a pair flagged false can still get a fixed rate, so confirm with quote_swap rather than filtering a user out.","type":"boolean"},"popular":{"default":false,"description":"Return the short curated list. Use this to answer \"what can I swap\" without paging.","type":"boolean"},"limit":{"default":50,"description":"How many assets to return. Default 50, maximum 500.","type":"integer","minimum":1,"maximum":500},"cursor":{"description":"Cursor from next_cursor of the previous page. Only needed when has_more is true.","type":"string"}},"additionalProperties":false}},{"name":"quote_swap","description":"Ask what a swap would give, in either direction: pass amount_from to learn what the user receives, or amount_to to learn what the user must send. Returns the rate, the pair minimum and maximum, who would execute the order, and the warnings to relay. With rate_type \"fixed\" it also returns the rate_id that create_swap needs; that lock lasts about two minutes, so quote again right before creating the order. A fixed rate is not offered on every pair and the tool says so rather than quietly falling back to a float rate. Nothing is created and no funds move.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"from":{"type":"string","description":"Asset the user sends, canonical id, for example \"btc.btc\"."},"to":{"type":"string","description":"Asset the user receives, canonical id, for example \"usdt.trx\"."},"amount_from":{"description":"Amount the user sends, as a decimal string. Pass this or amount_to, never both.","type":"string"},"amount_to":{"description":"Amount the user wants to receive, as a decimal string. The answer then says how much to send.","type":"string"},"rate_type":{"default":"float","description":"float: the rate is settled when the deposit arrives. fixed: the rate is held until valid_until, about two minutes, and returns the rate_id create_swap needs, usually at a slightly worse rate. Ask for fixed whenever the user wants a guaranteed number; if this pair cannot hold one the answer says so instead of quietly returning a float rate.","type":"string","enum":["float","fixed"]},"promo_code":{"description":"Promo code to apply, if the user has one.","type":"string"}},"required":["from","to"],"additionalProperties":false}},{"name":"swap_link","description":"Build a changenow.io link with the pair, the amount, the recipient address and the memo already filled in, so the user checks the numbers on the real page and presses Confirm themselves. Opening the link creates nothing. This is the recommended way to finish a swap: the user sees the rate and the address with their own eyes, which no amount of care in a chat transcript can replace. Use create_swap instead only when the user has explicitly approved this exact amount and address.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"from":{"type":"string","description":"Asset the user sends, canonical id."},"to":{"type":"string","description":"Asset the user receives, canonical id."},"amount_from":{"description":"Amount to prefill as the amount sent.","type":"string"},"amount_to":{"description":"Amount to prefill as the amount received. Implies a fixed rate on the page.","type":"string"},"address":{"description":"Recipient address to prefill. The user can still change it on the page.","type":"string"},"memo":{"description":"Memo or destination tag to prefill.","type":"string"},"refund_address":{"description":"Refund address to prefill.","type":"string"},"rate_type":{"default":"float","description":"Which rate the page opens with.","type":"string","enum":["float","fixed"]},"locale":{"description":"Two letter locale for the page, for example \"es\". English needs no locale.","type":"string","minLength":2,"maxLength":2}},"required":["from","to"],"additionalProperties":false}},{"name":"validate_address","description":"Check a recipient address, and its memo when the asset needs one, against the format the network requires, before any order exists. Call this on every address the user gives. A valid-looking address on the wrong network is the one mistake in a swap that destroys the funds with no way back, so when the address belongs to another network the answer names that network instead of just refusing. A few assets carry no address format in the catalogue; for those the answer says the address could not be checked rather than calling it valid.","write_action":false,"price_micros":0,"input_schema":{"type":"object","properties":{"asset":{"type":"string","description":"Asset that will be received at this address, canonical id."},"address":{"type":"string","description":"Recipient address to check."},"memo":{"description":"Memo or destination tag, when the asset needs one.","type":"string"}},"required":["asset","address"],"additionalProperties":false}}],"scan":{"score":56,"grade":"C","scanned_at":"2026-09-20T20:10:57.778Z","report":{"scannerVersion":"0.1.9","scannedAt":"2026-09-20T20:10:57.711Z","components":{"code":{"score":-1,"max":25,"notes":["remote-only server, no package to scan"]},"reliability":{"score":17,"max":20,"notes":["remote reachable in 2149ms"]},"poisoning":{"score":15,"max":15,"notes":["7 tool descriptions checked"]},"auth":{"score":3,"max":15,"notes":["open endpoint exposes 1 write-action tools with no auth"]},"maintenance":{"score":3,"max":15,"notes":["no repository listed"]},"identity":{"score":4,"max":10,"notes":["verified namespace with website, no repo"]}},"findings":[{"id":"auth.open-write","severity":"high","component":"auth","title":"Write-action tools reachable without authentication"},{"id":"maint.no-repo","severity":"low","component":"maintenance","title":"No source repository listed"}],"inputs":{"probes":[{"url":"https://mcp.changenow.io/mcp","reachable":true,"authRequired":false,"latencyMs":2149,"serverInfo":{"name":"chn-mcp-server","version":"2.1.2"}}],"packages":[],"repo":{"found":false},"icon":{"url":"https://changenow.io/images/press-page/primary-logo.png","source":"registry","width":553,"height":552},"presence":{"stars":null,"forks":null,"downloadsWeek":null,"license":null,"lastPushAt":null,"score":8}}}},"grade_history":[],"reviews":[]}