Skip to main content
Glama
bridgenode-ai

@bridgenode/mcp

Official

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
BRIDGENODE_DAILY_CAPNoSpending policy: maximum total payment per day in USDC1.0
BRIDGENODE_WALLET_KEYYesSolana wallet private key (base58) — agent's payment wallet
BRIDGENODE_MAX_PER_CALLNoSpending policy: maximum payment per call in USDC0.05

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
chat_completionsA

Send a chat completion request to any supported model. Free models are served without payment; the first calls to a PAID model are also free per client (free trials), after which x402 payment (Solana USDC) is required — an unpaid call returns 402 with the exact price; retry with _meta["x402/payment"]. Responses are non-streaming. Pass either mode (auto/eco/premium) or model (explicit id) — one of the two is required; model wins if both are sent. Use this tool to generate text; inspect models and prices first with the free list_models tool.

list_modelsA

List available models and their prices — free, no payment, no authentication required. Read-only: no state changes; data is served from the server's local config, so repeated calls return identical results (idempotent). Accepts no parameters: the input schema is an empty object, and any arguments passed are ignored. Calling it without arguments returns the complete catalog with per-token prices; there is no filtering, pagination, or configuration. Use this tool to inspect models and prices before calling the paid chat_completions tool. Same data as GET /v1/models (§5.2). Do not use it to generate text (use chat_completions) or to estimate a specific request's cost (use get_price_estimate).

get_price_estimateA

Estimate the USDC cost of a chat completion request before paying — free, no payment, no authentication required. Read-only: no state changes and no external calls; the estimate is computed locally from server pricing config, so repeated calls with identical inputs return identical results (idempotent). Use this tool to check the exact price for a given model/mode, messages, and max_tokens before calling the paid chat_completions tool. Provide either mode (auto/eco/premium routing) or model (explicit id, mutually exclusive with mode); one of the two is required — if both are sent, model wins. mode values: auto = cheapest model fitting the context, eco = cheapest available, premium = best model.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.7/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a clearly distinct purpose: list_models for catalog inspection, get_price_estimate for cost calculation, and chat_completions for actual generation. The descriptions explicitly cross-reference each other to prevent confusion.

Naming Consistency4/5

All names use snake_case with a verb_noun pattern (list_models, get_price_estimate, chat_completions). The only minor deviation is chat_completions being a noun phrase rather than a verb_noun construction, but it remains clear and consistent in style.

Tool Count5/5

Three tools is a well-scoped set for a focused LLM gateway server: inspect models, estimate cost, and generate text. Each tool earns its place with no redundancy.

Completeness5/5

The tool surface covers the full workflow: discover models, check pricing, and execute completions. The free/paid payment flow is supported via the 402 retry mechanism described in chat_completions, so there are no dead ends.

Maintenance

ActivityMaintained
ResponsivenessNo issues