Skip to main content
Glama

netfluid__bridge_blockchain

Creates a blockchain to blockchain bridge. Confirm (yes/no) before executing

Creates a blockchain to blockchain bridge. Only supports USDC transfers. Do not send any other tokens as these may be lost. @param api_key: The api key allocated to your application @param token: The wallet_api_token provided by /access/login @param wallet_fk: The wallet_fk provided by /access/login @param account_fk: The account_fk (this is a database ID (int) not an account address (str) and may not be 0) The account_fk that will use the bridge @param blockchain: The blockchain that will receive the transfer. Possible values "ethereum","solana","avalanche_c_chain" @param address: The address on the above blockchain that will receive the transfer @param alias: A descriptive name for this Bridge, can be anything, set by async default if none is provided. @param currency: The currency, possible values are usdc, usdt, eurc

@return: a json object

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
aliasNo
tokenYes
addressYes
api_keyYes
currencyNo
wallet_fkYes
account_fkYes
blockchainYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

B3.2/5.0
Behavior2/5

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

With no annotations, the description must fully disclose behavior. It does warn about token loss and the need for confirmation, but it contains a critical contradiction: it says 'Only supports USDC transfers' yet lists usdt and eurc as possible currency values. This inconsistency could mislead the agent into sending unsupported tokens, undermining the disclosure of risks. This is a significant transparency flaw.

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

Conciseness3/5

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

The description is somewhat redundant: 'Creates a blockchain to blockchain bridge' appears twice (lines 1 and 3), wasting a sentence. The structure with @param blocks is clear, but the repetition makes it less concise than it could be. The confirmation instruction is also abruptly placed.

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

Completeness3/5

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

The description covers the purpose, all parameters, a safety warning, and a confirmation requirement. The output schema exists, so the vague '@return: a json object' is acceptable. However, the currency contradiction and lack of any guidance on when to use this vs. other bridge-related tools leave gaps in the overall context needed to invoke the tool correctly.

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 schema has 0% description coverage, so the @param lines in the description bear the full burden. All 8 parameters are explained with meaningful details, such as account_fk being a database ID (not an address) and blockchain having enumerated values. However, the currency parameter's listed values conflict with the 'only USDC' statement, reducing the reliability of the parameter documentation.

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

Purpose4/5

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

The description clearly states the tool's action ('Creates a blockchain to blockchain bridge'), which distinguishes it from sibling bridge tools like bridge_delete or bridge_list. However, the internal contradiction between 'Only supports USDC transfers' and the currency parameter listing 'usdc, usdt, eurc' creates ambiguity about the exact purpose, so it is not a perfect 5.

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

Usage Guidelines3/5

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

The description provides some usage context by instructing 'Confirm (yes/no) before executing' and warning 'Do not send any other tokens as these may be lost.' However, it does not mention when to use this tool versus alternatives like bridge_off_ramp or bridge_on_ramp, nor does it explicitly state when not to use it beyond the token restriction.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

C2.6/5.0
Disambiguation2/5

Several tools have overlapping or identical purposes (e.g., netfluid__session and netfluid__session_2_token, netfluid__email and netfluid__send_email). With 142 tools spanning wallet, crypto, funding, and paywall features, distinguishing between similar account/crypto/balance tools requires careful reading of descriptions.

Naming Consistency3/5

Most tools follow a snake_case pattern with a netfluid__ or paywall__ prefix, but there are inconsistencies like netfluid__session_2_token, netfluid__netfluid_voucher_check, and single-noun tools (netfluid__skill, netfluid__fees). The two namespaces use slightly different conventions, making the overall set feel less uniform.

Tool Count1/5

At 142 tools, this is an extremely large surface for any MCP server. Even for a comprehensive financial platform, this exceeds practical usability and likely includes duplicates or overly granular operations.

Completeness4/5

The tool set covers a wide range of operations including account management, crypto transactions, funding methods, withdrawals, and paywall subscriptions. However, the presence of duplicate tools suggests redundancy rather than a clean, minimal complete surface, and some workflows may require chaining many tools.

Resources