Skip to main content
Glama

netfluid__account_charge

Charges the account based on a presented QR-code or NFC card. Confirm (yes/no) before executing

Charges the account based on a presented QR-code or NFC card. The payer must present a valid PIN for the transaction to complete @param api_key: The api key allocated to your application @param token: The wallet_api_token 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 merchant's account_fk, typically the account that will receive the payment @param account_address: The account_address that will be charged @param amount: The amount to charge @param pin: The account PIN of the account_address that will be charged @param note: The note on the transaction

@return: a json object

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pinYes
noteNo
tokenYes
amountYes
api_keyYes
account_fkYes
account_addressYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It discloses the need for PIN and the confirmation step, but it is ambiguous whether 'Confirm (yes/no) before executing' is a tool behavior or an instruction to the agent. It lacks details on side effects, reversibility, or error conditions, which is important for a financial mutation.

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 repeats 'Charges the account based on a presented QR-code or NFC card' twice in the opening, which is redundant. The @param block is structured and efficient, but the duplicated opening wastes space and could confuse. Not terrible, but not clean.

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 purpose, prerequisites, parameter meanings, and states '@return: a json object'. However, it does not explain what the JSON contains, error cases, or idempotency. The ambiguous confirmation step and lack of edge-case context leave gaps for a financial transaction tool with no annotation support.

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?

The input schema has 0% description coverage, but the description compensates fully with detailed @param explanations. It clarifies that account_fk is a database ID (not an address) and may not be 0, describes token as the wallet_api_token from /access/login, and specifies that pin belongs to the account_address being charged. All 7 parameters receive meaningful semantic annotation.

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's function: 'Charges the account based on a presented QR-code or NFC card.' This is a specific verb ('Charges') and resource ('the account') with a distinguishing mechanism (QR-code/NFC card). It differentiates from siblings like account_send or account_pay by the presentation method.

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?

Provides explicit guidance: 'Confirm (yes/no) before executing' instructs the agent to seek user confirmation, and 'The payer must present a valid PIN' sets a required prerequisite. While it doesn't explicitly mention alternatives or exclusions, the context of QR/NFC charging and the PIN requirement offer clear usage boundaries.

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