Skip to main content
Glama

Server Details

AI inference via MCP — pay per request with Solana USDC through x402. No API keys.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL
Repository
applefanaimail-blip/bridgenode-skill
GitHub Stars
0

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 5/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool serves a unique, well-defined purpose: listing models, estimating costs, and generating text. There is no overlap in functionality, and the descriptions explicitly cross-reference each other to guide correct selection.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case: list_models, get_price_estimate, chat_completions. The naming is predictable and reflects the action-resource structure.

Tool Count5/5

Three tools is an appropriate, focused scope for a paid LLM gateway. Each tool is essential and supported by the others, covering the full user journey without unnecessary bloat.

Completeness5/5

The tool surface covers the complete workflow: discover available models, estimate pricing for a specific request, and execute paid chat completions. No critical operations appear missing for the stated purpose.

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. 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. max_tokens defaults to 4096 and is clamped to the model's max output. Use this tool to generate text; to inspect models and prices first, use 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
Behavior5/5

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

Despite the annotations being present (all false), the description adds significant behavioral context beyond them: the x402 payment requirement, 402 retry flow, non-streaming responses, and max_tokens clamping. This is exactly the kind of disclosure that helps an agent understand side effects and constraints.

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?

The description is dense but well-structured, with each sentence serving a purpose. It front-loads the core action, then layers payment, routing, and usage guidance. No fluff or repetition.

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?

The description covers all critical aspects: payment flow, routing modes, mutual exclusivity, default behavior, and an alternative tool. With an output schema present, return values are adequately specified. This is a complete, production-quality description.

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

Parameters5/5

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

Schema description coverage is 100%, so baseline is 3. However, the description adds valuable semantics: mode values are explained (auto/eco/premium routing), the model-wins precedence is stated, and max_tokens default and clamping behavior are specified. This goes well beyond the schema field descriptions.

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 opens with a specific verb+resource: 'Send a chat completion request to any supported model.' It clearly distinguishes itself from sibling tools by explicitly recommending list_models for inspecting models and prices. The purpose is unambiguous and not a tautology.

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?

The description provides explicit guidance on when to use this tool ('Use this tool to generate text') and directs users to list_models for pre-inspection. It also explains the required mode/model choice, mutual exclusivity, and precedence rules, giving clear decision criteria.

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
Behavior5/5

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

Beyond the annotations (readOnlyHint, idempotentHint), the description adds non-obvious behavioral details: free, no authentication, no external calls, computed locally from server pricing config, and idempotent results. This significantly enriches the annotation-provided safety profile. No contradiction found.

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?

The description is front-loaded with the core purpose, then safety, usage, and parameter details. Every sentence earns its place, providing a logically organized and highly informative text without redundancy.

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?

Given the presence of an output schema, the description appropriately avoids explaining return values. It covers usage context, safety, parameter semantics, and relationship to sibling tools, making it fully adequate for an agent to select and invoke the tool correctly.

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

Parameters5/5

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

Though schema coverage is 100%, the description adds crucial semantics: defines mode values (auto/eco/premium), explains mutual exclusivity and that model wins if both are provided, clarifies that one of mode/model is required, and notes max_tokens is billed upfront. This goes well beyond the schema descriptions.

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 clearly states the tool estimates the USDC cost of a chat completion request before paying. It uses a specific verb ('Estimate') and resource ('chat completion request'), and distinguishes itself from sibling tools like chat_completions (paid) and list_models (model listing).

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 this tool: 'Use this tool to check the exact price ... before calling the paid chat_completions tool.' It also explains when to use mode vs model and notes mutual exclusivity and precedence, providing clear guidance on alternative approaches.

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: 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
Behavior5/5

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

The description adds significant context beyond annotations: free, no authentication required, data served from server's local config, no filtering/pagination/config, identical results on repeat calls. It reinforces read-only and idempotent behavior with concrete explanations. No contradiction with annotations.

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?

The description is appropriately sized for the tool's simplicity. It front-loads the core purpose in the first sentence, then provides necessary detail in a logical order (behavior, parameters, usage, exclusions). Every sentence earns its place without waste.

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?

The tool has an output schema, so return values are covered. The description is complete for a zero-parameter read-only tool: it covers what it lists, the data source, idempotency, lack of filtering, and how it differs from sibling tools. No gaps remain.

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?

There are zero parameters, which gets a baseline of 4. The description adds 'Accepts no parameters: calling it without arguments returns the complete catalog' – confirming the semantic of the empty input. This is sufficient; no additional parameter information is needed.

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 starts with 'List available models and their prices' – a clear verb+resource statement. It explicitly distinguishes from siblings by saying 'Do not use it to generate text (use chat_completions) or to estimate a specific request's cost (use get_price_estimate).' This makes the tool's purpose unmistakable.

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?

Explicit usage guidance is provided: 'Use this tool to inspect models and prices before calling the paid chat_completions tool.' It also gives direct exclusions: 'Do not use it to generate text (use chat_completions) or to estimate a specific request's cost (use get_price_estimate).' This clearly states when to use and when not to use, naming specific alternatives.

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

Discussions

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

Related MCP Servers

  • A
    license
    -
    quality
    B
    maintenance
    Crypto-native LLM gateway with OpenAI-compatible API and per-token USDC payments on Solana via the x402 protocol.
    Last updated
    8,997
    MIT
  • F
    license
    -
    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.
    Last updated

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.