AI inference bridge built exclusively for AI agents — no API keys, pay with Solana USDC via x402.
⚠️ Billing note (reasoning models):
max_tokens >= 200 on reasoning models (e.g. deepseek-v4-flash / deepseek-v4-pro / kimi-k3 / minimax-m3) — a smaller limit can return an empty answer, which is NOT refunded (the service was provided).Three steps, no API key, no registration. Any x402-capable client or the official SDKs handle the handshake automatically.
POST https://bridgenode.cc/v1/chat/completions — response is 402 Payment Required with a PAYMENT-REQUIRED header (price, payTo, memo, blockhash).TransferChecked + Memo transaction with your wallet. Fee payer is sponsored — the agent only needs USDC.PAYMENT-SIGNATURE header — response is 200 with a PAYMENT-RESPONSE settlement receipt.curl https://bridgenode.cc/v1/chat/completions -H "Content-Type: application/json" -d '{"model":"deepseek-v4-flash","messages":[{"role":"user","content":"hello"}],"max_tokens":100}'
# → 402 Payment Required + PAYMENT-REQUIRED header
# sign the partial transaction, then retry with PAYMENT-SIGNATURE header
# → 200 OK + PAYMENT-RESPONSE header
Live prices: /v1/models. Full flow and SDK examples: /llms-full.txt, /skill.md.
Add BridgeNode to any MCP client — one line (stdio wrapper, @bridgenode/mcp):
claude mcp add bridgenode -s user -- npx -y @bridgenode/mcp@latest
Or use the remote server directly (streamable-http) in claude_desktop_config.json / .cursor/mcp.json / .windsurf/mcp.json:
{
"mcpServers": {
"bridgenode": {
"type": "http",
"url": "https://bridgenode.cc/mcp"
}
}
}
Tools: chat_completions (paid, x402), list_models and get_price_estimate (free).
POST https://bridgenode.cc/v1/chat/completions — chat (x402 paid)GET https://bridgenode.cc/v1/models — models + prices (public)https://bridgenode.cc/mcp — MCP server (x402 paid tools)No payment, no API key, no registration — just send a request with the model id (first request → 200 directly).
gpt-oss-20b, gpt-oss-120b, glm-4.7-flash, glm-4.5-flash, glm-4.6v-flashgpt-oss-20b 🆓 — $0.00/1M in, $0.00/1M outgpt-oss-120b 🆓 — $0.00/1M in, $0.00/1M outglm-4.7-flash 🆓 — $0.00/1M in, $0.00/1M outglm-4.5-flash 🆓 — $0.00/1M in, $0.00/1M outglm-4.6v-flash 🆓 — $0.00/1M in, $0.00/1M outdeepseek-v4-flash — $0.26/1M in, $0.77/1M outglm-4.7-flashx — $0.08/1M in, $0.47/1M outglm-5.2 — $1.64/1M in, $5.15/1M outglm-5.1 — $1.64/1M in, $5.15/1M outglm-5 — $1.17/1M in, $3.74/1M outglm-5-turbo — $1.40/1M in, $4.68/1M outglm-4.7 — $0.70/1M in, $2.57/1M outglm-4.6 — $0.70/1M in, $2.57/1M outglm-4.5 — $0.70/1M in, $2.57/1M outglm-4.5-x — $2.57/1M in, $10.41/1M outglm-4.5-air — $0.23/1M in, $1.29/1M outglm-4.5-airx — $1.29/1M in, $5.27/1M outglm-4-32b-0414-128k — $0.12/1M in, $0.12/1M outglm-5v-turbo — $1.40/1M in, $4.68/1M outglm-4.6v — $0.35/1M in, $1.05/1M outglm-4.6v-flashx — $0.05/1M in, $0.47/1M outglm-4.5v — $0.70/1M in, $2.11/1M outglm-ocr — $0.04/1M in, $0.04/1M outkimi-k2.7-code — $1.11/1M in, $4.68/1M outkimi-k2.7-code-highspeed — $2.22/1M in, $9.36/1M outkimi-k2.6 — $1.11/1M in, $4.68/1M outkimi-k2.5 — $0.70/1M in, $3.51/1M outMiniMax-M2.7 — $0.35/1M in, $1.40/1M outMiniMax-M2.7-highspeed — $0.70/1M in, $2.81/1M outMiniMax-M2.5 — $0.35/1M in, $1.40/1M outMiniMax-M2.5-highspeed — $0.70/1M in, $2.81/1M outMiniMax-M2.1 — $0.35/1M in, $1.40/1M outMiniMax-M2.1-highspeed — $0.70/1M in, $2.81/1M outMiniMax-M2 — $0.35/1M in, $1.40/1M outdeepseek-v4-pro — $0.77/1M in, $2.32/1M outkimi-k3 — $3.51/1M in, $17.55/1M outglm-5.3 — $1.64/1M in, $5.15/1M outminimax-m3 — $0.35/1M in, $1.40/1M outnpx skills add bridgenode-ai/bridgenode-skillpip install bridgenode-llmpip install bridgenodepip install bridgenode-clipip install bridgenode-sdkpip install bridgenode-mcppip install bridgenode-skillnpm i @bridgenode/llmnpm i @bridgenode/mcp