Skip to main content
Glama

paywall__wallet_transfer

Transfers amount from wallet_fk, account_fk to the system wallet This tool only transfers the amount, it does not activate or act on the transfer. The sending wallet's PIN is required to perform the transaction. Use it for account top-ups or if successful to log a customer payment. The benefit of using a Netfluid wallet is that Netfluid does not charge a fee on internal transfers, implying a cost saving. Funds received in the system account become credits on the customer account. These credits can then be used to purchase subscriptions. On a successful payment this wallet and account can OPTIONALLY be linked to a customer's subscription. @param from_wallet_fk: The sender Netfluid wallet_fk @param from_wallet_pin: The sender Netfluid wallet PIN @param from_wallet_account_fk: The sender Netfluid account_fk (not account address but the database account_fk), if set to 0, we'll try and find an account_fk that matches the currency_fk=7 (ZAR) and has more than amount available @param amount: The decimal amount to transfer, 2 decimal points @param customer_id: The customer's database id @return: a json object, containing the OTT voucher amounts in the "values" object

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
amountYes
customer_idNo
from_wallet_fkYes
from_wallet_pinYes
from_wallet_account_fkNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

TDQS

A4.3/5.0
Behavior5/5

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

With empty annotations, the description discloses critical behavioral details: the tool only transfers and does not activate ('does not activate or act on the transfer'), requires a PIN, has no Netfluid fee on internal transfers, converts received funds to customer credits, and optional linking to a subscription. It also explains the auto-search behavior for from_wallet_account_fk=0.

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 verbose and not tightly structured. The core purpose is mixed with promotional language ('implying a cost saving') and a somewhat rambling explanation of credits and optional linking. The @param section is necessary but could be better formatted. Some sentences could be combined or cut.

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?

Covers purpose, use cases, prerequisites (PIN), side effects (credits, optional linking), and return format. It lacks explicit failure/error information but is otherwise complete for a transfer tool, especially given the extensive parameter documentation.

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 has no property descriptions (0% coverage), but the @param block fully explains all five parameters, including special behavior for from_wallet_account_fk=0 (currency_fk=7 auto-find), amount decimal precision, and the return object. This fully compensates for the missing schema 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 primary action ('Transfers amount from wallet_fk, account_fk to the system wallet') and the context (account top-ups, logging payments). However, it doesn't explicitly distinguish from sibling transfer tools like netfluid__account_send or paywall__pay_subscription_with_wallet, so it is clear but lacks direct sibling differentiation.

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 use cases ('Use it for account top-ups or if successful to log a customer payment') and mentions a cost-saving benefit. It doesn't specify when not to use or name alternatives, but the context is clear.

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