SDKs & CLI
Python SDK#
pip install bridgenode-llmPackage: pypi.org/project/bridgenode-llm
For the full toolkit (not just the LLM client):
pip install bridgenodeCLI#
pip install bridgenode-cliPackage: pypi.org/project/bridgenode-cli
bridgenode chat "Hello!"TypeScript SDK#
npm i @bridgenode/llmPackage: npmjs.com/package/@bridgenode/llm
x402 SDK (payment layer only)#
If you're wiring payment into a custom client rather than using a BridgeNode SDK, the official x402 client for Solana handles the 402 → sign → retry loop:
pip install "x402[svm]"Configure it with the agent's Solana keypair and point it at https://bridgenode.cc/v1/chat/completions; payment happens automatically. JavaScript/TypeScript equivalent: @x402/svm.
Agent skill#
For coding agents (Claude Code, Codex, Cursor, Windsurf) that support the skills install format:
npx skills add applefanaimail-blip/bridgenode-skillSource: github.com/applefanaimail-blip/bridgenode-skill
Spending limits#
All SDKs support optional, client-side spending limits — enforced locally before a transaction is signed, not against a server-side balance:
| Variable | Purpose |
|---|---|
BRIDGENODE_MAX_PER_CALL |
Cap on USDC spent per single request |
BRIDGENODE_DAILY_CAP |
Cap on total USDC spent per day |