Skip to main content
Glama

Server Details

BridgeNode — x402 pay-per-request AI inference. OpenAI-compatible API + MCP, Solana USDC, gas-free.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
bridgenode-ai/bridgenode-mcp
GitHub Stars
1
Server Listing
@bridgenode/mcp

Available Tools

3 tools
chat_completionsChat completions with x402 paymentAInspect

Send a chat completion request to any supported model. Paid tool: x402 payment (Solana USDC) is required — the first 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.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoSmart routing profile (auto/eco/premium).
modelNoExplicit model id (see list_models / /v1/models). Mutually exclusive with mode.
messagesYesChat messages (text content only).
max_tokensNoMax output tokens (billed upfront, §4.2). MCP calls are non-stream: cap per config.

Output Schema

ParametersJSON Schema
NameRequiredDescription
idNo
modelNo
usageNo
objectNo
choicesNo
createdNo

TDQS

A4.6/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations are all neutral false flags, so the description carries the full burden — and it discloses everything the agent needs: the paid x402 (Solana USDC) flow, the first-call-returns-402 with exact price then retry using _meta["x402/payment"], non-streaming responses, and the model-wins-if-both precedence rule. That covers the two biggest surprises for an agent: payment mechanics and response mode.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Four dense sentences, each earning its place: purpose, payment flow, mode/model rules, and sibling pointer. The most critical information (paid, 402-first-call) is front-loaded immediately after the purpose, before any optional routing details appear.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a complex, non-idempotent, paid (no write) tool with an output schema, it covers payment handshake, streaming behavior, parameter precedence, and the cost-free alternative. The only notable gap is no mention of get_price_estimate, though the 402-flow actually makes price pre-check less critical.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the baseline is 3. The description adds an unambiguous behavioral rule — 'model wins if both are sent' — that clarifies the anyOf relationship beyond the schema's 'mutually exclusive' phrasing, and it explains billing for max_tokens (upfront, §4.2). That is genuine added semantics, pushing it slightly above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a specific verb and resource: 'Send a chat completion request to any supported model' and closes with 'Use this tool to generate text'. It differentiates against the sibling by offering 'inspect models and prices first with the free list_models tool', so the agent can distinguish generation from inspection.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear when-to-use advice ('Use this tool to generate text; inspect model names first with free list_models'), plus two conditions for calling: the mode/model requirement and the 402-payment retry. It does not explicitly address the sibling get_price_estimate; a hint that price can also be pre-checked there would make the usage guidance complete.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_price_estimateEstimate the cost of a chat requestA
Read-onlyIdempotent
Inspect

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.

ParametersJSON Schema
NameRequiredDescriptionDefault
modeNoSmart routing profile (auto/eco/premium).
modelNoExplicit model id (see list_models / /v1/models). Mutually exclusive with mode.
messagesYesChat messages (text content only).
max_tokensNoMax output tokens to estimate (billed upfront, §4.2).

Output Schema

ParametersJSON Schema
NameRequiredDescription
modelNo
amount_usdcNo
input_tokensNo
amount_atomicNo
max_tokens_clampedNo

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With annotations already declaring readOnlyHint and idempotentHint, the description still adds new behavioral facts: computed locally from server pricing, zero external calls, no state changes, no payment or auth needed. It even explains the mechanism behind idempotence ('computed locally from server pricing config, so repeated calls with identical inputs return identical results') rather than merely echoing the annotation, plus the 'model wins' precedence rule when both mode and model are sent.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Roughly 150 words but every clause carries information: purpose, cost/auth profile, behavioral guarantees, usage routing, parameter semantics, and enum definitions. Nothing repeats the schema (no type resurfacing of 'string' or 'integer'), and the most decision-relevant fact ('free, no payment') is front-loaded in the first sentence. The structure flows from what → behavior → when to → how-to, which is an optimal order for an agent.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

All context dimensions are covered: the output schema captures the exact shape of the returned estimate, annotations capture safety/idempotence, and the description covers scope (USDC, chat completion requests), usage context (before chat_completions), auth, precedence, and mode semantics. The one thing it does not spell out, the rounding/unit details of the estimate, is legitimately delegated to the output schema. Nothing an agent needs to call this correctly or decide to route to it is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3; the description added — deepens this by defining each mode enum value ('auto = cheapest model fitting the context, eco = cheapest available, premium = best model') which the schema's bare enum enumations (auto/eco/premium) leaves undefined." The mutual-exclusion of model vs mode and the 'two are required; if both are sent, model wins' precedence are spelled out in plain language. It doesn't elaborate on the messages or max_tokens meaning, but those are already well described in the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Opens with a specific verb-plus-resource statement: 'Estimate the USDC cost of a chat completion request before paying.' It also differentiates from both siblings — chat_completions is explicitly the 'paid' execution tool this one precedes, and list_models is referenced as the source of model IDs. No ambiguity about what the tool returns or why it exists.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

States the exact trigger condition: 'Use this tool to check the exact price for a given model/mode, messages, and max_tokens before calling the paid chat_completions tool.' This explicitly positions it as a pre-flight step to the only sibling it competes with, and implies the counter-condition (don't use it when you intend to execute a chat). The 'free, no payment, no authentication' framing reinforces why it's safe to call first.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_modelsList available models and pricesA
Read-onlyIdempotent
Inspect

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).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
dataNo
objectNo

TDQS

A4.9/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds meaningful behavioral detail beyond annotations: free/no payment, no authentication required, any arguments are ignored, repeated calls return identical results, no filtering/pagination/configuration, and data source is local server config. The read-only and idempotent annotations are reinforced and expanded with practical operational context, enabling the agent to predict call behavior confidently.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Although relatively detailed, every sentence earns its place: free/auth status, read-only/idempotent behavior, parameter handling, return content, use case, and explicit exclusions. The core purpose and no-arguments fact are front-loaded, and the organization flows naturally from behavior to usage guidance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter list tool with an explicit output schema and rich annotations, the description fully covers what an agent needs: access requirements, return content, side-effect safety, the canonical endpoint reference, and disambiguation from both sibling tools. Nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool takes zero parameters, and the schema coverage is 100%, so the baseline is 4. The description adds useful semantics by explicitly confirming that any arguments are ignored and that calling without arguments returns the full catalog. This prevents agents from attempting to pass meaningless parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

Names a specific verb and resource ('List available models and their prices') and clearly separates itself from siblings by stating it returns the catalog rather than generating text or estimating cost. The purpose is unambiguous and differentiates this tool from chat_completions and get_price_estimate.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use it ('inspect models and prices before calling the paid chat_completions tool') and when not to use it ('do not use it to generate text' or 'estimate cost'), naming the appropriate alternatives in both exclusions. The usage guidance is direct and actionable.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 3 tool updates
    • First observedchat_completions
    • First observedget_price_estimate
    • First observedlist_models

Frequently Asked Questions

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Crypto-native LLM gateway with OpenAI-compatible API and per-token USDC payments on Solana via the x402 protocol.
    11,502
    MIT
  • F
    license
    Not graded
    quality
    C
    maintenance
    Keyless, pay-per-call AI gateway: 248 LLMs plus image/video/voice/music generation and live crypto, DeFi, markets, web-search and research tools through one MCP server. Pay per call in USDC via x402 on Base/Solana — no API key, no signup, free tier.
    -
  • A
    license
    Not graded
    quality
    D
    maintenance
    Solana on-chain intelligence API — token scans, wallet PnL, bundle detection, fresh wallets, dev profiling. MCP server for Claude, Cursor & AI agents. Live PumpFun/Raydium streams
    1
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.6/5.0
Disambiguation5/5

Each tool has a clearly distinct responsibility: list_models shows the catalog, get_price_estimate computes a cost, and chat_completions generates text. The free vs paid and read-only vs state-changing boundaries are also clear, so an agent can select the right tool without ambiguity.

Naming Consistency3/5

Two tools follow a clear verb_noun pattern (list_models, get_price_estimate), but chat_completions breaks the pattern as a noun/resource name rather than an action. The naming is readable and snake_case is consistent, but the conventions are mixed.

Tool Count5/5

Three tools is exactly the right scope for this server: list models, estimate cost, and generate chat completions. Each tool earns its place and there is no obvious bloat or redundancy.

Completeness5/5

The server covers the complete workflow: inspect models and prices, get a cost estimate for a request, then pay and generate a completion. There are no apparent dead ends or missing operations for the stated purpose of paid model access through Bridgenode.