ENDPOINT 1
https://dex.mk/mcp
MCP server metadata
- Name
- blueDEX
- Version
- 0.8.0
blueDEX is a non-custodial decentralized exchange (DEX) meta-aggregator built for autonomous AI agents (not offered to natural persons). It quotes across DEX venues on Base, Ethereum, Arbitrum, Optimism, BNB Chain, Polygon, Avalanche and Solana, and returns unsigned transactions you sign with your own key — blueDEX never custodies funds. Amounts are integer base units as strings. Always verify transactions before signing: check tx.verification.routerAllowlisted and compare against get_meta's published allowlist (or use the bluedex-sdk npm package, which pins both into the published artifact). Quotes expire quickly; re-quote rather than sign stale payloads. Stable lane: USDT<->USDC same-chain and cross-chain routing. INSTANT lane (create_instant_shift / get_instant_status): reach assets with no on-chain DEX route — Tron (USDT-TRC20, TRX), BTC, and cross-chain corridors — via a custodial-at-venue exchange; you send to a returned deposit address and the output settles to your address, blueDEX never holds funds. DUST-SWEEP (sweep_dust): consolidate many small leftover token balances into one token (USDC) on EVM — pass your dust list, get a plan of unsigned gas-positive swaps with a tiny fee riding one leg. ON-RAMPS (list_onramps): a directory of reputable independent fiat->crypto on-ramps to acquire a first coin with minimal KYC (vouchers + non-custodial P2P), for surfacing to a human principal who needs to fund a wallet; blueDEX operates none of them and never custodies. ROUTE (plan_route): the cheapest MULTI-HOP path between any two assets — composes DEX swaps (non-custodial) + instant-lane bridges (custodial-at-venue) into one route, every fee + per-leg custody disclosed; execute DEX legs via build_swap_transaction, bridge legs via create_instant_shift. Not available in sanctioned jurisdictions.
Known tools 10
get_metablueDEX's published transparency data: treasury (fee recipient) addresses, router allowlist, fee schedule, paused venues.
Inferred read-onlylist_instant_assetsAssets reachable via the INSTANT lane (no on-chain DEX route) — Tron/USDT-TRC20, BTC, and stablecoin corridors.
Inferred read-onlycreate_instant_shiftOpen an INSTANT shift for assets with no on-chain DEX route — Tron (USDT-TRC20, TRX), BTC, cross-chain.
Inferred read-onlyget_instant_statusStatus of an instant shift by id (from create_instant_shift): waiting | pending | processing | settling | settled | refund* | expired, plus deposit/settle tx hashes once available.
Potential side effectssweep_dustConsolidate many small leftover token balances (dust) into one token (default USDC) on an EVM chain.
Inferred read-onlylist_onrampsReputable INDEPENDENT fiat->crypto on-ramps blueDEX signposts so a human principal can acquire a first coin with minimal KYC, then swap/bridge on blueDEX.
Inferred read-onlyplan_routePlan the cheapest MULTI-HOP route between ANY two assets — composes DEX swaps (non-custodial) + instant-lane bridges (custodial-at-venue) into one path, with every fee and per-leg custody disclosed.
Inferred read-onlyCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.bluedex]
url = "https://dex.mk/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"bluedex": {
"type": "http",
"url": "https://dex.mk/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: bluedex
Remote MCP URL: https://dex.mk/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"bluedex": {
"url": "https://dex.mk/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"bluedex": {
"type": "http",
"url": "https://dex.mk/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "bluedex",
"transport": "streamable-http",
"url": "https://dex.mk/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
ENDPOINT 2
https://predict.dex.mk/mcp
MCP server metadata
- Name
- predictDEX
- Version
- 1.0.0
predictDEX (predict.dex.mk) is an independent, non-custodial interface to Polymarket prediction markets. Prices are market-implied probabilities (0 to 1) set by traders with real money; they are not advice or forecasts by predictDEX. Use it when a user asks for the odds or probability of a real-world event (elections, central banks, sports, crypto, geopolitics, tech, culture), when you research what markets expect, or when you or your principal want to take a position. Typical flow: search_markets -> get_event -> get_orderbook / get_price_history -> quote_order (fee-inclusive preview) -> trade. Trading: if you control a wallet key, call get_trading_setup, then get_agent_challenge + attest_agent once to get an agent token, and trade with Polymarket's official SDK using predictDEX's builder code and signer (orders are signed by your own key; predictDEX never holds funds). If you have no wallet, call create_trade_link and give the link to your person: they review and sign on predict.dex.mk. Fees: Polymarket's own taker fee plus a small predictDEX fee on top, both charged on-chain only when an order fills (see predict://fees). Trading is unavailable in restricted regions (https://predict.dex.mk/legal/restricted); opening positions for people there is not allowed. Always tell your person that prediction markets can lose the full stake, and confirm before any trade.
Known tools 11
get_eventFull event by slug: every market, outcome names and prices, token ids, tick size, min order size, rules summary, resolution source and status.
Inferred read-onlyget_orderbookLive order book for one outcome token: bids and asks (price 0-1, size in shares), spread, midpoint and last trade.
Potential side effectsquote_orderPreview an order against the live book without placing it: average and worst price, shares, cost, payout if the outcome wins, Polymarket fee, predictDEX fee and warnings.
Inferred read-onlyget_trading_setupEverything an agent with its own wallet needs to trade: chain, collateral (pUSD), builder code, signer URL, attestation steps, fees and a ready-to-run TypeScript snippet using Polymarket's official SDK.
Potential side effectscreate_trade_linkA pre-filled predictDEX ticket URL (event, market, outcome, side, amount) for a person to review and sign in their own wallet.
Inferred read-onlyget_positionsOpen positions of a Polymarket trading account or its owner address: size, average price, current price, value and P&L.
Inferred read-onlyget_agent_challengeReturns the canonical 'predictDEX Agent Attestation v1' message for your address.
Potential side effectsCONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.predictdex]
url = "https://predict.dex.mk/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"predictdex": {
"type": "http",
"url": "https://predict.dex.mk/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: predictdex
Remote MCP URL: https://predict.dex.mk/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"predictdex": {
"url": "https://predict.dex.mk/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"predictdex": {
"type": "http",
"url": "https://predict.dex.mk/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "predictdex",
"transport": "streamable-http",
"url": "https://predict.dex.mk/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
TRUST AND VERIFICATION EVIDENCE
Loading Trust v2 evidence…
Checking the associated registrable domain. The BuiltWith key remains server-side.
Evidence is source-attributed and does not guarantee that a third-party server is safe. Risk labels are conservative metadata heuristics.