AgentSkillsCN

integration-paypal

通过 AgenCo 可用的 PayPal 操作

SKILL.md
--- frontmatter
name: integration-paypal
description: "PayPal actions available through AgenCo"
user-invocable: false
disable-model-invocation: false

PayPal

Actions available through AgenCo secure gateway. All credentials are stored in the cloud vault — never exposed locally.

Actions

ActionDescription
create_paymentInitiates PayPal payment transactions
get_paymentRetrieves payment details and status
create_orderCreates orders for checkout
capture_orderCaptures authorized payment amounts
create_invoiceGenerates invoices for billing
send_invoiceSends invoices to recipients
list_invoicesRetrieves invoice history
create_subscriptionSets up recurring billing plans
create_payoutSends mass payments to recipients
list_disputesRetrieves payment disputes and claims

How to Use

Always search first to discover exact tool names and their input schemas, then call the tool.

Step 1: Search for the tool

bash
agenco search-tools '{"queries":["paypal create payment"]}'

The response includes toolName (exact name) and inputSchema (required/optional parameters).

Step 2: Call the tool

Use the exact toolName and match the inputSchema from the search results:

bash
agenco call-tool '{"toolName":"<toolName from search>","input":{...}}'

Example

bash
# Find the right tool
agenco search-tools '{"queries":["paypal create payment"]}'

# Call it (use the exact toolName and schema from the search result)
agenco call-tool '{"toolName":"paypal_create_payment","input":{...}}'

If PayPal is not connected, run agenco list-connected-integrations to check, then connect it via the Shield UI.