{
  "markdown": "# ifthenpay MCP Server\r\n\r\nOfficial **Model Context Protocol (MCP)** server for **ifthenpay** payment services.\r\n\r\nThe ifthenpay MCP Server enables AI assistants and MCP-compatible applications to securely interact with ifthenpay payment services, including **Multibanco**, **MB WAY**, **Payshop**, **Credit Card**, **PinPay**, **Cofidis Pay**, **PIX**, and payment reporting.\r\n\r\n---\r\n\r\n# Registry\r\n\r\n**Registry ID**\r\n\r\n```text\r\ncom.ifthenpay/payments\r\n```\r\n\r\n**Remote Endpoint**\r\n\r\n```text\r\nhttps://ai.ifthenpay.com/mcp/payments/\r\n```\r\n\r\n**Protocol**\r\n\r\n- Model Context Protocol (MCP)\r\n- JSON-RPC 2.0\r\n- Streamable HTTP\r\n\r\n---\r\n\r\n# Supported Clients\r\n\r\nThe server is compatible with any MCP client, including:\r\n\r\n- Claude Desktop\r\n- GitHub Copilot\r\n- Visual Studio Code\r\n- Cursor\r\n- Windsurf\r\n- Continue.dev\r\n- Any other MCP-compatible client\r\n\r\n---\r\n\r\n# Available Tools\r\n\r\n| Tool | Description |\r\n|------|-------------|\r\n| `multibanco_create_reference` | Create a Multibanco payment reference |\r\n| `mbway_request_payment` | Send an MB WAY payment request |\r\n| `mbway_check_status` | Check the status of an MB WAY payment |\r\n| `payshop_create_reference` | Create a Payshop payment reference |\r\n| `creditcard_create_payment` | Create a hosted Credit/Debit Card checkout |\r\n| `pinpay_create_payment` | Create a Pay-by-Link supporting Card, Multibanco, MB WAY, Payshop, Google Pay, Apple Pay, Cofidis Pay and PIX |\r\n| `cofidis_create_payment` | Create a Cofidis Pay payment |\r\n| `pix_create_payment` | Create a PIX payment |\r\n| `payments_list` | Retrieve completed payments from the ifthenpay Backoffice |\r\n\r\n---\r\n\r\n# Rate Limits\r\n\r\nTo ensure platform stability, the server applies rate limiting.\r\n\r\n- 60 requests per IP per minute\r\n- Exceeded requests return **HTTP 429 Too Many Requests**\r\n- Batch JSON-RPC requests are not supported\r\n\r\n---\r\n\r\n# Client Configuration\r\n\r\n## Claude Desktop\r\n\r\n```json\r\n{\r\n  \"mcpServers\": {\r\n    \"ifthenpay\": {\r\n      \"url\": \"https://ai.ifthenpay.com/mcp/payments/\"\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n## GitHub Copilot / Visual Studio Code\r\n\r\n```json\r\n{\r\n  \"servers\": {\r\n    \"ifthenpay\": {\r\n      \"type\": \"http\",\r\n      \"url\": \"https://ai.ifthenpay.com/mcp/payments/\"\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n## Cursor\r\n\r\n```json\r\n{\r\n  \"mcpServers\": {\r\n    \"ifthenpay\": {\r\n      \"url\": \"https://ai.ifthenpay.com/mcp/payments/\"\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n## Windsurf\r\n\r\n```json\r\n{\r\n  \"mcpServers\": {\r\n    \"ifthenpay\": {\r\n      \"serverUrl\": \"https://ai.ifthenpay.com/mcp/payments/\"\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n## Continue.dev\r\n\r\n```json\r\n{\r\n  \"mcpServers\": [\r\n    {\r\n      \"name\": \"ifthenpay\",\r\n      \"transport\": {\r\n        \"type\": \"streamable-http\",\r\n        \"url\": \"https://ai.ifthenpay.com/mcp/payments/\"\r\n      }\r\n    }\r\n  ]\r\n}\r\n```\r\n\r\n---\r\n\r\n# Example MCP Request\r\n\r\nInitialize the connection:\r\n\r\n```json\r\n{\r\n  \"jsonrpc\": \"2.0\",\r\n  \"id\": 1,\r\n  \"method\": \"initialize\",\r\n  \"params\": {\r\n    \"protocolVersion\": \"2025-03-26\",\r\n    \"clientInfo\": {\r\n      \"name\": \"my-client\",\r\n      \"version\": \"1.0\"\r\n    }\r\n  }\r\n}\r\n```\r\n\r\nList available tools:\r\n\r\n```json\r\n{\r\n  \"jsonrpc\": \"2.0\",\r\n  \"id\": 2,\r\n  \"method\": \"tools/list\"\r\n}\r\n```\r\n\r\nCall a tool:\r\n\r\n```json\r\n{\r\n  \"jsonrpc\": \"2.0\",\r\n  \"id\": 3,\r\n  \"method\": \"tools/call\",\r\n  \"params\": {\r\n    \"name\": \"multibanco_create_reference\",\r\n    \"arguments\": {\r\n      \"mb_key\": \"...\",\r\n      \"order_id\": \"1001\",\r\n      \"amount\": 25.00\r\n    }\r\n  }\r\n}\r\n```\r\n\r\n---\r\n\r\n# Documentation\r\n\r\nComplete documentation, examples and API reference are available at:\r\n\r\n**Documentation**\r\n\r\nhttps://ai.ifthenpay.com/mcp/docs/\r\n\r\n**Interactive Test Client**\r\n\r\nhttps://ai.ifthenpay.com/mcp/client/\r\n\r\n**ifthenpay**\r\n\r\nhttps://www.ifthenpay.com\r\n\r\n---\r\n\r\n# License\r\n\r\nCopyright © ifthenpay.\r\n\r\nAll rights reserved.",
  "bytes": 3721,
  "sha": "bf98f1a209cb5d893999116d7c80fe9cac67bd52395d02f08d8ebbde1efc3931",
  "repo_slug": "ifthenpay/mcp-payments",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/mcp_com_ifthenpay_payments_a4e4036e/readme"
}