PayPal MCP Server
Developmentstdiohttp-streamingv1.0.0
Official PayPal MCP server for commerce and payments. Lets AI agents create and capture orders, issue invoices, process refunds, manage subscriptions, and query transactions and disputes via the PayPal APIs. Useful for building checkout integrations, automating billing, and reconciling payments from an AI assistant.
连接
将此配置添加到 .claude/mcp.json
传输方式:
{
"mcpServers": {
"paypal": {
"command": "npx",
"args": [
"-y",
"@paypal/mcp"
],
"env": {
"PAYPAL_ACCESS_TOKEN": "<YOUR_PAYPAL_ACCESS_TOKEN>"
}
}
}
}工具 (2)
create_order
Create a PayPal order for a given amount and currency.
{
"type": "object",
"required": [
"amount",
"currency"
],
"properties": {
"amount": {
"type": "string",
"description": "Order amount as a decimal string"
},
"currency": {
"type": "string",
"description": "Three-letter ISO currency code"
}
}
}create_refund
Refund a captured payment, fully or partially.
{
"type": "object",
"required": [
"capture_id"
],
"properties": {
"amount": {
"type": "string",
"description": "Amount to refund (omit for full refund)"
},
"capture_id": {
"type": "string",
"description": "Capture ID to refund"
}
}
}资源
此服务器未提供任何资源。
提示词
此服务器未提供任何提示词。
服务器信息
- 许可证
- MIT
- 版本
- 1.0.0
- 星标
- 430
- 最后更新
- 2026年7月9日