paypal_list_transactions
ActiveTool of Paypal
declared in 0.1.0
Find PayPal transactions within a date range. Returns amount, status, payer info, and transaction IDs. Use to audit payments or track cash flow.
Parameters schema
{
"type": "object",
"examples": [
{
"end_date": "2024-12-31T23:59:59Z",
"_clientId": "your-paypal-client-id",
"start_date": "2024-01-01T00:00:00Z",
"_clientSecret": "your-paypal-client-secret"
},
{
"_sandbox": true,
"end_date": "2024-09-30T23:59:59Z",
"_clientId": "your-paypal-client-id",
"start_date": "2024-09-01T00:00:00Z",
"_clientSecret": "your-paypal-client-secret"
}
],
"required": [
"_clientId",
"_clientSecret",
"start_date",
"end_date"
],
"properties": {
"_sandbox": {
"type": "boolean",
"description": "Use sandbox environment (default: false)"
},
"end_date": {
"type": "string",
"description": "End date in ISO 8601 format (e.g., 2024-12-31T23:59:59Z)"
},
"_clientId": {
"type": "string",
"description": "PayPal app Client ID"
},
"start_date": {
"type": "string",
"description": "Start date in ISO 8601 format (e.g., 2024-01-01T00:00:00Z)"
},
"_clientSecret": {
"type": "string",
"description": "PayPal app Client Secret"
}
}
}Parent server
Paypal
https://github.com/pipeworx-io/mcp-paypal
1/7 registries