paygentic
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paygenticWhat's my wallet balance?"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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 & browsersMCP 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 |
| Create account + wallet + API key | None |
| Get wallet balance and status | API key |
| List all your wallets | API key |
| Create a new wallet | API key |
| Send money between wallets (previews first) | API key |
| Create a public invoice anyone can pay | API key |
| List invoices | API key |
| Agent-initiated spend (policy-checked) | API key |
| Add spending limits to a wallet | API key |
| List spending policies | API key |
| Read the immutable audit trail | API key |
| Get transaction history | API key |
| Dashboard overview | API key |
Configuration
Env Variable | Default | Description |
| — | Your agent API key ( |
|
| PayGent API base URL |
License
MIT — UNCONSTRAINED.CAPITAL LTD
Available Tools
13 toolspaygentic_check_balanceB
Get the balance and status of a specific wallet. Requires API key.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes | The wallet ID to check |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| title | Yes | Invoice title (e.g. 'Data export task') | |
| amount | Yes | Amount in USD (e.g. 15.00 for $15) | |
| walletId | Yes | Wallet that will receive the payment | |
| expiresAt | No | ISO 8601 expiry date | |
| description | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| name | No | ||
| agentId | Yes | Unique ID for the agent (e.g. 'billing-bot') | |
| agentType | No | ||
| description | No | ||
| capabilities | No | ||
| monthlyLimit | No | Monthly spending limit in USD | |
| modelProvider | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| limit | No | ||
| action | No | ||
| offset | No | ||
| walletId | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | ||
| walletId | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| walletId | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Amount in USD | |
| purpose | Yes | What the payment is for (e.g. 'API call to OpenAI') | |
| walletId | Yes | Wallet to debit | |
| idempotencyKey | No |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| amount | Yes | Amount in USD (e.g. 5.00 for $5) | |
| toAgentId | No | Destination agent ID | |
| toWalletId | No | Destination wallet ID (UUID) | |
| description | No | What the payment is for | |
| fromWalletId | Yes | Source wallet ID | |
| toPublicSlug | No | Destination public slug | |
| idempotencyKey | No | Unique key to prevent duplicate sends |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| enabled | No | Whether the policy is active (default: true) | |
| category | No | Category name (required if policyType is 'category') | |
| walletId | Yes | ||
| maxAmount | Yes | Maximum amount in USD | |
| policyType | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| Yes | Your email address for the account | ||
| password | Yes | Password (8+ characters) | |
| agentName | No | A name for your agent (e.g. 'support-bot') | |
| agentType | No | ||
| description | No | ||
| capabilities | No | ||
| modelProvider | No | AI model provider (e.g. 'openai', 'anthropic') |
TDQS
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.
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.
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.
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.
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.
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.
13 tool updates
v1.0.0- First observed
paygentic_check_balance - First observed
paygentic_create_invoice - First observed
paygentic_create_wallet - First observed
paygentic_get_audit_log - First observed
paygentic_get_dashboard - First observed
paygentic_get_transactions - First observed
paygentic_list_invoices - First observed
paygentic_list_policies - First observed
paygentic_list_wallets - First observed
paygentic_request_payment - First observed
paygentic_send_money - First observed
paygentic_set_policy - First observed
paygentic_signup
TDQS
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.
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.
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.
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
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
- BankSyncOAuthio.banksync
Connect AI agents to bank accounts, transactions, balances, and investments.
Complete financial infrastructure for AI agents — payments, lending, escrow & more.
Connect AI agents to financial institution origination, analytics, and compliance workflows.
Payment infrastructure for AI agents: spending rules, approval flows, single-use virtual cards.
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to manage personal expenses through natural language conversations. Supports adding, searching, and analyzing transactions with automatic categorization and financial insights.3MIT
- AlicenseNot gradedqualityFmaintenanceEnables 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.22MIT
- AlicenseNot gradedqualityDmaintenanceEnables AI agents to access Magpie Payment Platform APIs for processing payments, creating checkout sessions, sending invoices, and managing payment links through natural conversation.461MIT
- AlicenseNot gradedqualityCmaintenanceEnables AI agents to hold wallets, make payments, and charge for services using the Setu payment network.5MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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