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.
Conectar
Añade esta configuración a .claude/mcp.json
Transporte:
{
"mcpServers": {
"paypal": {
"command": "npx",
"args": [
"-y",
"@paypal/mcp"
],
"env": {
"PAYPAL_ACCESS_TOKEN": "<YOUR_PAYPAL_ACCESS_TOKEN>"
}
}
}
}Herramientas (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"
}
}
}Recursos
Este servidor no expone ningún recurso.
Prompts
Este servidor no expone ningún prompt.
Información del servidor
- Autor
- PayPal (@paypal)
- Repositorio
- https://github.com/paypal/agent-toolkit
- Licencia
- MIT
- Versión
- 1.0.0
- Estrellas
- 430
- Última actualización
- 9 de julio de 2026