Skip to main content
Glama
FoxRick

paygentic

by FoxRick

PayGent SDK

Financial infrastructure for AI agents. Give your agents native tools to earn, send, and manage money.

  • SDK: npm install paygentic-sdk — typed REST client for Node.js & browsers

  • MCP Server: npx paygentic-sdk — Model Context Protocol server with 13 tools

Quick Start

SDK (code)

import { PayGent } from 'paygentic-sdk';

const paygent = new PayGent({ apiKey: 'pg_live_...' });

// Check balance
const wallet = await paygent.getWallet('wallet-id');
console.log(wallet.balance);

// Send money
await paygent.sendMoney({
  fromWalletId: 'wallet-a',
  toWalletId: 'wallet-b',
  amount: 3.50,
  description: 'API cost reimbursement'
});

// Create invoice
const invoice = await paygent.createInvoice({
  walletId: 'wallet-a',
  amount: 15.00,
  title: 'Data export task'
});
console.log(invoice.paymentUrl);

// Sign up (no API key needed)
const account = await paygent.signup({
  email: 'bot@example.com',
  password: 'secure-password-123',
  agentName: 'my-first-agent'
});
console.log(account.apiKey);

MCP Server (agent tools)

Add to your MCP client config:

{
  "mcpServers": {
    "paygentic": {
      "command": "npx",
      "args": ["-y", "paygentic-sdk"],
      "env": {
        "PAYGENTIC_API_KEY": "pg_live_xxxxxxxxxxxx",
        "PAYGENTIC_BASE_URL": "https://paygentic-one.vercel.app"
      }
    }
  }
}

Then ask your agent:

  • "Sign me up for PayGent"

  • "What's my wallet balance?"

  • "Send $3.50 to my transcription agent"

  • "Create an invoice for $15 for the data export task"

  • "Set a daily spending cap of $50 on my research agent"

  • "Show me the audit log for the last 7 days"

Related MCP server: remit.md MCP Server

MCP Tools

Tool

Description

Auth

paygentic_signup

Create account + wallet + API key

None

paygentic_check_balance

Get wallet balance and status

API key

paygentic_list_wallets

List all your wallets

API key

paygentic_create_wallet

Create a new wallet

API key

paygentic_send_money

Send money between wallets (previews first)

API key

paygentic_create_invoice

Create a public invoice anyone can pay

API key

paygentic_list_invoices

List invoices

API key

paygentic_request_payment

Agent-initiated spend (policy-checked)

API key

paygentic_set_policy

Add spending limits to a wallet

API key

paygentic_list_policies

List spending policies

API key

paygentic_get_audit_log

Read the immutable audit trail

API key

paygentic_get_transactions

Get transaction history

API key

paygentic_get_dashboard

Dashboard overview

API key

Configuration

Env Variable

Default

Description

PAYGENTIC_API_KEY

Your agent API key (pg_live_...)

PAYGENTIC_BASE_URL

http://localhost:3000

PayGent API base URL

License

MIT — UNCONSTRAINED.CAPITAL LTD

Available Tools

13 tools
paygentic_check_balanceB

Get the balance and status of a specific wallet. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdYesThe wallet ID to check

TDQS

B3.2/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It only discloses that an API key is required. It does not mention side effects, rate limits, or what 'status' entails. The read-only nature is implied but not explicit.

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

Conciseness4/5

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

The description is short and front-loaded with the primary purpose. No wasted words. However, it could be slightly more informative without becoming verbose.

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?

For a simple tool with one parameter and no output schema, the description is adequate but lacks details on return values (exact format of balance and status). It covers the essential action and authentication requirement.

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

Parameters3/5

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

Schema coverage is 100% and the description does not add further meaning to the single parameter 'walletId'. The schema already describes it as 'The wallet ID to check'. Baseline 3 is appropriate.

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 action ('get') and resource ('balance and status of a specific wallet'). It distinguishes itself from sibling tools like paygentic_list_wallets, which lists wallets rather than checking a specific wallet's details.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives. It mentions an API key requirement but does not compare with other tools or specify when it is appropriate.

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

paygentic_create_invoiceA

Create an invoice that anyone can pay via a public link. When paid, the wallet balance increases. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
titleYesInvoice title (e.g. 'Data export task')
amountYesAmount in USD (e.g. 15.00 for $15)
walletIdYesWallet that will receive the payment
expiresAtNoISO 8601 expiry date
descriptionNo

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description carries full burden. It discloses that payment increases wallet balance and that an API key is required, but omits other behaviors such as editability after creation, expiry handling, rate limits, or error states. Disclosure is partial and insufficient.

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?

Two concise sentences that are front-loaded and contain zero waste. Every part adds value.

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?

Given 5 parameters (3 required) and no output schema, the description does not mention the return format or what the response contains (e.g., the invoice ID or public link). It covers the basic purpose but leaves gaps in completeness for an agent to invoke correctly.

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

Parameters3/5

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

Schema description coverage is 80%, so the baseline is 3. The description adds no parameter-specific details beyond the schema, but the schema already describes parameters well (e.g., amount in USD, exclusive minimum). No extra value is provided.

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 creates an invoice that anyone can pay via a public link and that the wallet balance increases upon payment. This effectively distinguishes it from siblings like 'paygentic_request_payment' or 'paygentic_send_money' by emphasizing the public link aspect.

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 mentions a prerequisite ('Requires API key'), which is helpful, but does not explicitly state when to use this tool versus alternatives like 'paygentic_request_payment' or 'paygentic_send_money'. The context is clear but lacks exclusions or comparisons.

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

paygentic_create_walletC

Create a new wallet/agent under your account. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
nameNo
agentIdYesUnique ID for the agent (e.g. 'billing-bot')
agentTypeNo
descriptionNo
capabilitiesNo
monthlyLimitNoMonthly spending limit in USD
modelProviderNo

TDQS

C2.9/5.0
Behavior2/5

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

With no annotations provided, the description carries full burden. It only states the tool is a create operation and requires authentication, but fails to disclose side effects, idempotency, or behavior on duplicates.

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 extremely concise: two short sentences. The main action is front-loaded, and there is no redundant or extraneous information.

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

Completeness1/5

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

Given the tool has 7 parameters (1 required), no annotations, and no output schema, the description is severely lacking. It does not explain parameters, success/error responses, or usage context.

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

Parameters2/5

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

Schema description coverage is only 29% (2 of 7 parameters have descriptions). The tool description adds no further parameter details, leaving most parameters (e.g., agentType, capabilities) unexplained.

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 action ('Create'), the resource ('new wallet/agent'), and the context ('under your account'). It distinguishes from sibling tools like 'paygentic_list_wallets' by being the only creation tool.

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

Usage Guidelines2/5

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

The description mentions a prerequisite ('Requires API key') but provides no guidance on when to use this tool versus alternatives or when not to use it.

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

paygentic_get_audit_logC

Read the immutable audit trail for compliance and debugging. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
limitNo
actionNo
offsetNo
walletIdNo

TDQS

C2.7/5.0
Behavior2/5

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

With no annotations provided, the description carries the full burden. It indicates read-only behavior and immutability, but lacks details on pagination, rate limits, auth requirements beyond API key, or error conditions.

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?

Very short, two sentences, front-loaded with purpose. However, it sacrifices completeness; additional parameter guidance would improve it without harming conciseness.

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

Completeness2/5

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

For a tool with 4 parameters, no output schema, and no parameter descriptions, the description is inadequate. The agent needs to know about filtering (action, walletId), pagination (limit, offset), and the response format to use the tool correctly.

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

Parameters1/5

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

Schema description coverage is 0%, and the description adds no information about any of the four parameters (limit, action, offset, walletId). The only extra detail is 'Requires API key', which is not a parameter.

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 states it reads the immutable audit trail for compliance and debugging, providing a specific verb and resource. However, it does not distinguish this tool from the sibling paygentic_get_transactions, which might also involve reading transaction logs.

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?

Implied usage for compliance and debugging, but no explicit when-to-use or when-not-to-use guidance. No mention of alternatives or exclusions.

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

paygentic_get_dashboardA

Get dashboard overview: total balance, spend, active wallets, recent activity. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A3.5/5.0
Behavior2/5

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

No annotations provided; description only mentions API key requirement. Does not disclose whether data is real-time or cached, rate limits, or consequences of invalid credentials. For a read operation, destructive behavior is not an issue, but other aspects are omitted.

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?

Two sentences, no wasted words. First sentence lists contents, second sentence adds requirement. Front-loaded and efficient.

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?

For a simple tool with no parameters and no output schema, description lists key return items and a requirement. However, lacks details on response structure and differentiation from siblings, leaving some gaps for an agent.

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?

No parameters exist, and schema coverage is 100%. Baseline score of 4 applies. Description adds no parameter information but does list return fields, which is appropriate.

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?

Description clearly states verb 'Get', resource 'dashboard overview', and lists specific items (total balance, spend, active wallets, recent activity). This distinguishes it from sibling tools that focus on individual resources like balance or transactions.

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

Usage Guidelines2/5

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

Only mentions 'Requires API key' as a prerequisite. No guidance on when to use this dashboard vs checking specific balances (paygentic_check_balance) or transaction lists (paygentic_get_transactions). Missing context for tool selection.

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

paygentic_get_transactionsC

Get transaction history for a wallet. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdYes

TDQS

C2.3/5.0
Behavior1/5

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

No annotations are provided, so the description carries the full burden. It fails to disclose important behavioral traits such as pagination, rate limits, error handling, or what happens if the walletId is invalid. The description is insufficient for an agent to understand side effects or constraints.

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

Conciseness4/5

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

The description is very concise at two sentences with no extraneous content. It could potentially be more front-loaded, but the brevity is appropriate given the simplicity of the tool.

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

Completeness1/5

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

With a single parameter, no output schema, and no annotations, the description is severely incomplete. It fails to mention return format, ordering, pagination, or any other contextual information needed for proper usage.

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

Parameters1/5

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

The schema coverage is 0%, meaning the description adds no information beyond the schema fields themselves. The walletId parameter is not explained at all (e.g., format, source, or constraints), so the agent gains no additional semantic understanding.

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 verb 'Get' and the resource 'transaction history for a wallet,' making the tool's purpose obvious. While it distinguishes from siblings like paygentic_check_balance, it does not explicitly differentiate from other history tools, but the context is sufficient.

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

Usage Guidelines2/5

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

The only usage hint is 'Requires API key,' which is a prerequisite. No guidance is provided on when to use this tool versus alternatives like paygentic_list_invoices or paygentic_check_balance, nor any exclusions or context.

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

paygentic_list_invoicesC

List invoices, optionally filtered by wallet and status. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
statusNo
walletIdNo

TDQS

C2.9/5.0
Behavior2/5

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

No annotations are provided, so the description carries full burden. It only mentions API key requirement but fails to disclose whether the operation is read-only, has side effects, or any pagination/rate limits. For a list operation, essential behavioral traits like idempotency and read-only nature are omitted.

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

Conciseness4/5

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

The description is a single, concise sentence that front-loads the core action. It wastes no words, though it could be slightly more structured to separate the listing action from the auth requirement.

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

Completeness2/5

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

The tool has no output schema and the description does not mention return values (e.g., list of invoice objects, fields included). For a listing operation, omitting pagination or response structure leaves the agent with incomplete context.

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

Parameters2/5

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

Schema description coverage is 0%, yet the description only restates parameter names ('wallet and status') without adding semantics or format details (e.g., enum meanings, walletId format). It does not compensate for the missing 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 action 'List' and the resource 'invoices', with optional filters by wallet and status. It is sufficiently distinct from sibling tools like paygentic_create_invoice (create) and paygentic_list_wallets (list wallets), so an agent can readily identify its purpose.

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

Usage Guidelines2/5

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

The description provides no guidance on when to use this tool versus alternatives (e.g., paygentic_get_transactions for specific transactions). No when-not-to-use instructions or prerequisites beyond 'Requires API key' are given, which is insufficient for optimal tool selection.

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

paygentic_list_policiesB

List spending policies for a wallet. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
walletIdYes

TDQS

B3.1/5.0
Behavior2/5

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

No annotations provided; description only states it lists policies and requires an API key. Does not disclose read-only nature, pagination, error handling, or side effects.

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

Conciseness4/5

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

Two short, efficient sentences. Could be slightly more compact but no wasted words. Front-loaded with core purpose.

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?

For a simple list operation with one parameter and no output schema, the description covers the basic purpose and auth, but lacks details on output format and parameter specification.

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

Parameters2/5

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

Schema has 0% coverage; walletId parameter has no description. The description does not explain what walletId is or how to obtain it, failing to add meaning beyond 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?

The description clearly states the action ('List') and the resource ('spending policies for a wallet'). It distinguishes from sibling tool paygentic_set_policy, which sets policies.

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

Usage Guidelines2/5

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

Only mentions API key requirement as a prerequisite. No guidance on when to use this tool vs alternatives like paygentic_set_policy or other listing tools.

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

paygentic_list_walletsA

List all wallets/agents in your account. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4/5.0
Behavior3/5

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

No annotations provided; the description correctly implies read-only behavior by using 'list'. However, it does not disclose potential details like pagination, rate limits, or ordering, which would improve transparency.

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?

Two short sentences, no redundancy, and the essential information is front-loaded. Every word earns its place.

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 simple list tool with no parameters and no output schema, the description covers the core functionality. Could mention what fields are returned, but not necessary for the agent to use it correctly.

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

Parameters3/5

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

Input schema has no parameters, and schema description coverage is 100%. The description adds no parameter semantics, which is acceptable but baseline is 3 per guidelines.

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?

Description uses 'List all wallets/agents in your account' which clearly indicates the action (list) and resource (wallets/agents). Differentiates from siblings like create_wallet and check_balance.

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?

States 'Requires API key' as a prerequisite, which is useful for usage. Lacks explicit when-to-use vs alternatives, but for a straightforward list tool, this is adequate.

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

paygentic_request_paymentA

Request a payment (agent-initiated spend). Subject to spending policies and rate limits. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesAmount in USD
purposeYesWhat the payment is for (e.g. 'API call to OpenAI')
walletIdYesWallet to debit
idempotencyKeyNo

TDQS

A3.9/5.0
Behavior4/5

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

With no annotations, the description fully bears the burden of disclosing behavior. It clearly states the action (spending), constraints (policies, rate limits), and authentication (API key). It does not mention idempotency or error handling, but the core behavioral traits are transparent.

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 extremely concise: three sentences, no filler. The first sentence states the purpose immediately. Every sentence adds value, making it efficient for an AI agent to parse.

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?

Given the tool has 4 parameters, no output schema, and no annotations, the description is minimal. It covers the main action and constraints but lacks details on return values, failure modes, or idempotency behavior. It is adequate but not comprehensive.

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

Parameters3/5

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

Schema description coverage is 75% (3 of 4 parameters have descriptions). The description adds no parameter-specific information beyond the schema. The idempotencyKey parameter lacks explanation, but the schema covers most; hence a baseline score of 3 is appropriate.

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 the tool's purpose clearly: 'Request a payment (agent-initiated spend).' The phrase 'agent-initiated spend' distinguishes it from sibling tools like `paygentic_send_money`, which may handle non-agent payments. This specificity helps an AI agent identify the correct tool.

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 mentions constraints: 'Subject to spending policies and rate limits. Requires API key.' This gives context for usage but does not explicitly state when to use versus alternatives (e.g., `paygentic_send_money` or `paygentic_create_invoice`). The guidance is implied rather than explicit.

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

paygentic_send_moneyB

Send money from one wallet to another. Previews first to check policies. Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
amountYesAmount in USD (e.g. 5.00 for $5)
toAgentIdNoDestination agent ID
toWalletIdNoDestination wallet ID (UUID)
descriptionNoWhat the payment is for
fromWalletIdYesSource wallet ID
toPublicSlugNoDestination public slug
idempotencyKeyNoUnique key to prevent duplicate sends

TDQS

B3.4/5.0
Behavior3/5

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

With no annotations, the description partially carries the transparency burden. It mentions a preview step and API key requirement, adding useful behavioral context. However, it omits details about mutation effects, idempotency handling, error conditions, or rate limits.

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 extremely concise: two sentences that immediately state the core function and key behavioral notes. No wasted words, and the most important information is front-loaded.

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

Completeness2/5

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

Given the tool's complexity (7 parameters, no output schema, no annotations), the description is insufficient. It fails to explain return values, the role of idempotencyKey, or how to choose among the three destination parameters (toAgentId, toWalletId, toPublicSlug).

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

Parameters3/5

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

Schema coverage is 100%, so the description does not need to add parameter details. It adds no extra meaning beyond what the schema already provides, earning the baseline score of 3.

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 action ('Send money from one wallet to another') and distinguishes this tool from siblings like check_balance or create_invoice. Adding details like 'Previews first to check policies' further clarifies the tool's specific behavior.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives (e.g., request_payment, create_invoice). There is no mention of when not to use it or any prerequisites beyond the API key.

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

paygentic_set_policyA

Add a spending policy to a wallet (per-transaction, daily, weekly, monthly, or category limits). Requires API key.

ParametersJSON Schema
NameRequiredDescriptionDefault
enabledNoWhether the policy is active (default: true)
categoryNoCategory name (required if policyType is 'category')
walletIdYes
maxAmountYesMaximum amount in USD
policyTypeYes

TDQS

A3.9/5.0
Behavior3/5

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

No annotations are provided, so the description must convey behavioral traits. It indicates a mutation ('Add') but doesn't disclose whether it replaces existing policies, if there are limits on number of policies, or side effects. The API key requirement is useful but basic.

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 very concise: two short sentences that convey the core action and a prerequisite. Every sentence earns its place with no fluff.

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?

Given 5 parameters with 3 required and no output schema, the description provides a reasonable overview but misses details like how policies interact, whether they are cumulative, or what the response indicates. It is minimally adequate for an experienced agent.

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?

With 60% schema description coverage, the description adds value by enumerating the policy types (per-transaction, daily, etc.), clarifying the purpose of the policyType enum. However, it does not explain the walletId parameter or the conditional requirement for category when policyType is 'category'.

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 uses a specific verb 'Add' and resource 'spending policy to a wallet', and lists the types of limits (per-transaction, daily, weekly, monthly, or category). It clearly distinguishes from sibling tools like paygentic_list_policies or paygentic_check_balance.

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 mentions 'Requires API key' as a prerequisite but does not provide guidance on when to use this tool versus alternatives (e.g., when to set a new policy vs. list existing ones). No exclusion criteria or context about overlapping policies.

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

paygentic_signupA

Create a new PayGent account, wallet, and API key. Use this first if you don't have an account yet. No API key required.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailYesYour email address for the account
passwordYesPassword (8+ characters)
agentNameNoA name for your agent (e.g. 'support-bot')
agentTypeNo
descriptionNo
capabilitiesNo
modelProviderNoAI model provider (e.g. 'openai', 'anthropic')

TDQS

A3.5/5.0
Behavior2/5

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

With no annotations, the description carries full burden but only discloses that it creates resources and requires no API key. It omits details on error handling, idempotency, side effects, or success response.

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 very concise, consisting of two sentences that front-load the purpose with no unnecessary words.

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

Completeness2/5

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

Despite good purpose and usage guidance, the description lacks depth on return values (no output schema), parameter details, and potential side effects of creating an account, wallet, and API key.

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

Parameters2/5

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

Schema coverage is 57% (moderate), but the description adds no parameter information beyond what the schema provides, failing to compensate for the uncovered 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?

The description clearly states the verb 'Create' and specifies the resources 'PayGent account, wallet, and API key', distinguishing it from sibling tools that perform other operations.

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?

It explicitly says 'Use this first if you don't have an account yet' and 'No API key required', providing clear when-to-use and prerequisite context, though lacks explicit when-not-to-use or alternatives.

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. 13 tool updatesv1.0.0
    • First observedpaygentic_check_balance
    • First observedpaygentic_create_invoice
    • First observedpaygentic_create_wallet
    • First observedpaygentic_get_audit_log
    • First observedpaygentic_get_dashboard
    • First observedpaygentic_get_transactions
    • First observedpaygentic_list_invoices
    • First observedpaygentic_list_policies
    • First observedpaygentic_list_wallets
    • First observedpaygentic_request_payment
    • First observedpaygentic_send_money
    • First observedpaygentic_set_policy
    • First observedpaygentic_signup

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a well-defined and distinct purpose, covering wallet management, invoices, policies, transactions, and account setup. Even similar actions like sending money and requesting payment are clearly differentiated by their descriptions.

Naming Consistency5/5

All tools follow a consistent `verb_noun` pattern with the `paygentic_` prefix. The verbs are clear and the nouns are specific, making the tool names predictable and easy to interpret.

Tool Count5/5

With 13 tools, the server covers a comprehensive set of operations for a payment/wallet system without being overwhelming. The count is well within the typical 3-15 range for a focused service.

Completeness4/5

The server covers core operations like creating wallets, handling invoices, setting policies, and sending money. Minor gaps exist, such as missing update/delete for wallets and invoices, but these are not critical for basic functionality.

Maintenance

ActivityStale
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables AI agents to perform financial transactions such as direct payments, escrows, and bounty management using natural language with zero code integration. It provides a comprehensive suite of tools for fund streaming, subscriptions, and reputation tracking to facilitate secure agent-to-agent commerce.
    22
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    Enables AI agents to access Magpie Payment Platform APIs for processing payments, creating checkout sessions, sending invoices, and managing payment links through natural conversation.
    46
    1
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/FoxRick/paygentic-sdk'

If you have feedback or need assistance with the MCP directory API, please join our Discord server