npm @bridgenode/mcpstreamable-httpupdated 9d ago
Built for AI agents — no API keys, no registration, pay-as-you-go with Solana USDC via x402.
What can you do with BridgeNode MCP?
@bridgenode/mcp
Built for AI agents — no API keys, no registration, pay-as-you-go with Solana USDC via x402.
BridgeNode MCP wrapper — stdio MCP server that proxies requests to the remote
https://bridgenode.cc/mcp (streamable-HTTP) with automatic x402 payment
(Solana USDC). No API keys, no registration.
Installation (one-command)
claude mcp add bridgenode -s user -- npx -y @bridgenode/mcp@latest
Or manually (Claude Code, Cursor, other MCP clients):
{
"mcpServers": {
"bridgenode": {
"command": "npx",
"args": ["-y", "@bridgenode/mcp@latest"]
}
}
}
Configuration (.env)
# Solana wallet private key (base58) — agent's payment wallet
BRIDGENODE_WALLET_KEY=
# Spending policy (fail-closed)
BRIDGENODE_MAX_PER_CALL=0.05
BRIDGENODE_DAILY_CAP=1.0
Tools
chat_completions— AI inference (paid; x402 payment automatic)list_models— model list (free)get_price_estimate— estimate cost of a chat request (free)
How it works
- Local MCP client launches the wrapper via stdio
- Wrapper connects to
https://bridgenode.cc/mcp(streamable HTTP) - On
tools/callreceiving 402 (payment required) — the wrapper automatically signs the payment withBRIDGENODE_WALLET_KEYand retries the request - Spending policy checks every payment BEFORE signing (fail-closed)
Links
- Website: https://bridgenode.cc
- Protocol: x402 V2 (docs.x402.org)
- npm: https://www.npmjs.com/package/@bridgenode/mcp
Python packages
Prefer Python? The same BridgeNode toolkit is on PyPI:
- Python SDK:
pip install bridgenode-llm→ https://pypi.org/project/bridgenode-llm - CLI:
pip install bridgenode-cli→ https://pypi.org/project/bridgenode-cli - Full toolkit (SDK + CLI):
pip install bridgenode→ https://pypi.org/project/bridgenode
Community
- Moltbook agent profile: https://moltbook.com/u/bridgenode_eli
- Discord: https://discord.gg/HUpVKxJxhG
- X (Twitter): https://x.com/eliBNx
⭐ Star this repo — it helps AI agents discover BridgeNode.
Install
Add BridgeNode MCP to your client. Pick the one you use.
{
"servers": {
"mcp": {
"type": "http",
"url": "https://bridgenode.cc/mcp"
}
}
}Add to `.vscode/mcp.json` in your workspace.
claude mcp add mcp -- npx -y @bridgenode/mcpcodex mcp add mcp -- npx -y @bridgenode/mcpamp mcp add mcp -- npx -y @bridgenode/mcp{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@bridgenode/mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@bridgenode/mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@bridgenode/mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@bridgenode/mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"mcp": {
"command": "npx",
"args": [
"-y",
"@bridgenode/mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@bridgenode/mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@bridgenode/mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @bridgenode/mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
3 tools
BridgeNode MCP exposes 3 tools to a connected agent.
- chat_completions
- AI inference (paid; x402 payment automatic)
- list_models
- model list (free)
- get_price_estimate
- estimate cost of a chat request (free)
Score
72 / 100
Good
- Documentation22/25
- Maintenance25/25
- Trust6/20
- Capability4/15
- Install experience15/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 1 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 3 tool(s) documented
- Provides prompt templates
- Provides resources
- 18 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.1.0Latest | Aug 30, 2026 |
| 1.0.13 | Aug 30, 2026 |
| 1.0.12 | Aug 23, 2026 |