Skip to main content
Glama

delegare-agent-payments

Server Details

Delegare provides secure payments for AI agents.

Google AP2-powered payment authorization for AI agents. Issue scoped spending mandates with hard limits, merchant controls, and no exposure of card credentials or private keys.

Agents pay across dual rails: cards and ACH via Stripe, or USDC and USDT on Coinbase Base. Supports paid API access and x402-protected requests through MCP.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 3.8/5 across 6 of 6 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool has a clearly distinct purpose: fetching with payment, balance check, merchant stats, payment execution, mandate polling, and authorization setup. No confusion possible.

Naming Consistency5/5

All tools follow a consistent verb_noun pattern with lowercase and underscores, e.g., execute_fetch, get_balance, pay_merchant.

Tool Count5/5

6 tools cover the core actions of the agent payments domain without being overwhelming or insufficient.

Completeness4/5

Covers essential workflows: authorization, payment, balance, and merchant stats. Minor gap like transaction history not critical.

Available Tools

6 tools
execute_fetchExecute FetchAInspect

Fetch a URL. If the resource requires payment via x402, provide your intentMandate and this tool will automatically authorize the payment and retrieve the data. Supports both GET and POST. Can also be used for standard public API fetches.

ParametersJSON Schema
NameRequiredDescriptionDefault
urlYesThe URL to fetch
bodyNoOptional JSON body for POST requests
_metaNoInternal metadata for transport
methodNoHTTP methodGET
intentMandateNoOptional: Your intent mandate (the SD-JWT-VC encoded token) to automatically pay for x402 protected resources.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesThe fetched URL
statusYesHTTP response status code
contentNoThe response body (JSON or text)
receiptNoPayment receipt if executed
paymentExecutedYesWhether an x402 payment was executed
Behavior4/5

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

Beyond annotations (readOnlyHint=false, destructiveHint=false), the description adds key behavior: automatic payment authorization via intentMandate and ability to handle both GET and POST. This provides useful transparency for agent decision-making.

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?

Four concise sentences, front-loaded with the core purpose. No redundant phrases. Every sentence adds value.

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?

Given the output schema exists, the description covers the main fetch behavior and special payment handling. It lacks explicit error handling or prerequisites, but is largely complete for a fetch tool.

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 baseline is 3. The description explains the intentMandate parameter's role in automatic payment, adding marginal value over schema descriptions alone.

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 'Fetch a URL' and explains the x402 payment authorization feature, supporting both GET and POST. It distinguishes itself from sibling tools like get_balance or pay_merchant by covering generic URL fetching.

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 implies usage for fetching any URL and for x402-protected resources, but does not explicitly state when to use alternatives (e.g., pay_merchant for direct payments) or when not to use this tool.

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

get_balanceGet BalanceA
Read-onlyIdempotent
Inspect

Check your remaining spending allowance and monthly limits.

ParametersJSON Schema
NameRequiredDescriptionDefault
_metaNoInternal metadata for transport
intentMandateYesThe intent mandate to check balance for

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusNoMandate status (e.g. active)
currencyNoCurrency (e.g. usd)
maxPerTxCentsNoMax per-transaction limit
maxMonthlySpendCentsNoMaximum monthly limit
currentMonthlySpendCentsNoAmount spent this month
remainingMonthlySpendCentsNoRemaining budget this month
Behavior3/5

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

Annotations already declare readOnlyHint and destructiveHint, so the description adds context about what is returned (allowance and limits). No contradiction, but the description does not add significant behavioral detail beyond the annotations.

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 a single concise sentence that front-loads the purpose. No unnecessary words.

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

Completeness5/5

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

Given the simple read operation, the description is complete. Output schema exists, so return values are documented elsewhere.

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 parameters are fully described in the schema. The description does not add any additional meaning or usage details for the intentMandate parameter.

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 title and description clearly state the tool checks remaining spending allowance and monthly limits. It is distinct from sibling tools like execute_fetch and pay_merchant.

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 implies usage for balance checking but does not explicitly state when to use this tool versus alternatives or provide exclusion criteria.

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

get_merchant_statsGet Merchant StatsA
Read-onlyIdempotent
Inspect

Get performance statistics for your merchant account.

ParametersJSON Schema
NameRequiredDescriptionDefault
_metaNoInternal metadata for transport

Output Schema

ParametersJSON Schema
NameRequiredDescription
periodNoReporting period
totalVolumeCentsNoTotal volume in cents
totalTransactionsNoTotal number of transactions
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds 'performance statistics' but no new behavioral details (e.g., whether stats are cached, real-time, or require recent activity).

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?

One sentence, front-loaded with the core action, no filler. Appropriate length for a simple tool.

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 existence of an output schema (not shown) and the tool's simplicity (0 required params, read-only), the description is minimally adequate. However, it lacks specificity about what statistics are returned (e.g., time range, metrics included).

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% but the only parameter is '_meta' described as 'Internal metadata for transport', leaving no user-facing parameters. The description does not clarify that no additional input is needed, so it adds no value 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 verb 'Get' and the resource 'performance statistics for your merchant account', distinguishing it from sibling tools like 'get_balance' or 'pay_merchant'.

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 on when to use this tool vs. alternatives (e.g., 'get_balance' for balance, 'execute_fetch' for raw data). The agent must infer context from names alone.

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

pay_merchantPay MerchantAInspect

Execute a payment to a merchant, crypto wallet, or user handle using your spending delegate.

ParametersJSON Schema
NameRequiredDescriptionDefault
_metaNoInternal metadata for transport
recipientNoOptional: The merchant ID, Delegare handle (e.g. 'sunny-violet-panda'), or 0x crypto wallet address to send funds to.
amountCentsYesAmount in cents (e.g., 100 = $1.00)
descriptionYesPayment description or memo
intentMandateYesYour intent mandate (the SD-JWT-VC encoded token)
idempotencyKeyYesUnique key for the payment to prevent duplicates (e.g., 'pay_merchant_100_001')

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusNoPayment status
networkNoBlockchain network if applicable
receiptIdNoUnique receipt ID
amountCentsNoAmount paid
transactionNoOn-chain transaction hash if applicable
txExplorerBaseUrlNoExplorer URL base
Behavior3/5

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

Annotations already indicate readOnlyHint=false, destructiveHint=false. Description adds context about using a spending delegate and recipient types, but lacks disclosure of failure modes, irreversibility, or balance prerequisites.

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?

Single sentence, front-loaded with key action and targets. No wasted words; efficient and clear.

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?

Given the rich schema and presence of output schema, description is mostly complete. It covers the core action and unique method (spending delegate), but could mention prerequisites or common failure scenarios.

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 baseline is 3. Description does not add meaning beyond the schema; it references recipient types but does not explain intentMandate or idempotencyKey usage beyond what schema already provides.

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 the tool executes a payment to a merchant, crypto wallet, or user handle using a spending delegate. This is specific and distinguishes it from sibling tools which are read-only or authorization-related.

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 on when to use this tool vs alternatives (e.g., request_payment_authorization). Usage context is only implied by the tool name and sibling list, not explicitly stated in the description.

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

poll_setup_sessionPoll Setup SessionA
Read-onlyIdempotent
Inspect

Polls the status of a pending spending mandate setup. Call this after generating a setup URL to get the final intentMandate.

ParametersJSON Schema
NameRequiredDescriptionDefault
_metaNoInternal metadata for transport
sessionTokenYesThe sessionToken returned by request_payment_authorization

Output Schema

ParametersJSON Schema
NameRequiredDescription
statusYesCurrent status: pending, complete, or expired
intentMandateNoThe finalized intent mandate if complete
encodedMandateNoLegacy encoded mandate field
Behavior3/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is clear. Description adds the return of 'intentMandate' but doesn't disclose polling behavior, potential errors, or that it may need repeated calls.

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?

Single sentence with an immediate instruction, no filler. 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?

With output schema existing, description covers purpose and when to use. Could mention polling until ready, but annotations (idempotent) mitigate the gap. Adequate for a simple poll tool.

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 has 100% coverage for parameters, both described adequately. Description does not add new meaning beyond the schema, so 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?

Description clearly states the verb 'polls', the resource 'pending spending mandate setup', and the outcome 'get the final intentMandate'. It distinguishes from siblings like 'request_payment_authorization' by specifying it's for polling after setup.

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?

Explicitly says 'Call this after generating a setup URL', providing clear context for when to use. Does not explicitly state alternatives or when not to use, but the context implies it's only for this polling scenario.

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

request_payment_authorizationRequest Payment AuthorizationAInspect

Set up agent spending limits. Request permission from the user to spend money on their behalf. Use this BEFORE making a payment to generate an Intent Mandate token.

ParametersJSON Schema
NameRequiredDescriptionDefault
_metaNoInternal metadata for transport
maxPerTxCentsYesRequested maximum amount in cents allowed per single transaction
maxMonthlySpendCentsYesRequested maximum total amount in cents allowed per month

Output Schema

ParametersJSON Schema
NameRequiredDescription
setupUrlNoURL for the user to complete payment authorization
shortcutNoWhether an existing mandate was used
sessionTokenNoToken to poll for completion
intentMandateNoEncoded intent mandate if shortcut available
maxPerTxCentsNoConfirmed max per transaction
maxMonthlySpendCentsNoConfirmed max monthly spend
Behavior3/5

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

Annotations indicate the tool is not read-only and not destructive. The description adds that it involves 'request permission from the user' and generates a token, which is useful behavioral context beyond the annotations. However, it does not elaborate on side effects or error conditions, so the transparency is adequate but not exceptional.

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 concise with three sentences, each adding value. The first sentence broadly states the action, while the second and third clarify the purpose and usage context. No redundant information is present, though the first sentence could be more specific.

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?

Given that the tool has an output schema (not shown) and clear parameter descriptions, the description adequately covers the tool's role in the payment workflow. It explains the necessity of calling it before payments and the token generation, which suffices for most use cases.

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?

The input schema has 100% description coverage for parameters (maxPerTxCents and maxMonthlySpendCents), and the _meta field is described as internal. The tool description does not provide additional parameter-level details beyond the schema, so the 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 explicitly states the tool's purpose: 'Set up agent spending limits' and 'Request permission from the user to spend money on their behalf.' It differentiates from sibling tools like pay_merchant by specifying 'Use this BEFORE making a payment to generate an Intent Mandate token,' making its role clear.

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?

The description provides clear sequential guidance: 'Use this BEFORE making a payment to generate an Intent Mandate token.' This implies when to use the tool (as a prerequisite for payments) and hints at the usage context, though it does not explicitly state 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.

Discussions

No comments yet. Be the first to start the discussion!

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources