8
n8n 한국어amn8n.com

Beanstream 결제 MCP 서버

고급

이것은Miscellaneous, AI RAG분야의자동화 워크플로우로, 22개의 노드를 포함합니다.주로 HttpRequestTool, McpTrigger 등의 노드를 사용하며. AI 대리자를 Beanstream 결제 API에 연결하여 결제 처리 및 관리

사전 요구사항
  • 대상 API의 인증 정보가 필요할 수 있음

카테고리

워크플로우 미리보기
노드 연결 관계를 시각적으로 표시하며, 확대/축소 및 이동을 지원합니다
워크플로우 내보내기
다음 JSON 구성을 복사하여 n8n에 가져오면 이 워크플로우를 사용할 수 있습니다
{
  "id": "yJSpk7kJ1a04O1Bx",
  "meta": null,
  "name": "Beanstream Payments MCP Server",
  "tags": [],
  "nodes": [
    {
      "id": "10cf85e3-5487-41f5-aa78-f24e9372d0bb",
      "name": "설정 안내",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1380,
        -240
      ],
      "parameters": {
        "color": 4,
        "height": 1060,
        "content": "### ⚙️ Setup Instructions\n\n1. **Import Workflow**: \nLoad this workflow into your n8n instance\n\n2. **Authentication**: \nNo authentication required\n\n3. **Activate Workflow**:\nEnable the workflow to start the MCP server\n\n4. **Get MCP URL**: \nCopy the webhook URL from the MCP trigger\n\n5. **Connect AI Agent**:\nUse the MCP URL in your AI agent configuration\n\n\n### 💡 Usage Notes\n• Parameters are auto-populated by AI using $fromAI() expressions\n• With 15 API endpoints available as tools\n• Responses maintain original API structure\n\n\n### 🛠️ Customization\n• Add data transformation nodes if needed\n• Implement custom error handling\n• Add logging or monitoring nodes\n\n• Modify parameter defaults in any HTTP request node as needed\n\n### 💬 Need Help?\nPing me on [discord](https://discord.me/cfomodz) for integration guidance and custom automations. Check the [n8n documentation](https://docs.n8n.io/integrations/builtin/cluster-nodes/sub-nodes/n8n-nodes-langchain.toolmcp/) for more information."
      },
      "typeVersion": 1
    },
    {
      "id": "aaca9307-fb8b-4198-b0fd-4b03f1480a66",
      "name": "워크플로우 개요",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -1120,
        -240
      ],
      "parameters": {
        "width": 420,
        "height": 920,
        "content": "## 🛠️ Beanstream Payments MCP Server ✅ 15 operations\n\n### About\nhttps://www.beanstream.com/api/v1\n\n### 🔧 How it Works\n\nThis workflow converts the Beanstream Payments API into an MCP-compatible interface for AI agents.\n\n• **MCP Trigger**: Serves as your server endpoint for AI agent requests\n• **HTTP Request Nodes**: Handle API calls to https://www.beanstream.com/api/v1\n• **AI Expressions**: Automatically populate parameters via `$fromAI()` placeholders\n• **Native Integration**: Returns responses directly to the AI agent\n\n\n### 📋 Available Operations (15 endpoints)\n\n**Payments (5 operations)**\nmake, get, complete, return, void\n\n**Profiles (8 operations)**\ncreate, delete, get, update, add\n\n**Reporting (1 operations)**\nsearch\n\n**Token Iz Ation (1 operations)**\ntokenize\n\n"
      },
      "typeVersion": 1
    },
    {
      "id": "eed93e60-7813-478b-9711-51301243fce5",
      "name": "Beanstream 결제 MCP 서버",
      "type": "@n8n/n8n-nodes-langchain.mcpTrigger",
      "position": [
        -620,
        -240
      ],
      "webhookId": "e5c945a1-5f5c-417c-9486-c200a684321f",
      "parameters": {
        "path": "beanstream-payments-mcp"
      },
      "typeVersion": 1
    },
    {
      "id": "78cf70e1-6dc0-48a5-848d-7f8c1da4b7be",
      "name": "메모",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -660,
        -100
      ],
      "parameters": {
        "color": 2,
        "width": 1100,
        "height": 200,
        "content": "## Payments"
      },
      "typeVersion": 1
    },
    {
      "id": "d7dcee97-fca7-47d4-9bdb-54de5ae2ec68",
      "name": "Make 결제",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -520,
        -60
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/payments",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Make Payment"
      },
      "typeVersion": 4.2
    },
    {
      "id": "5732277f-4160-40f8-9efd-44d53b3aedde",
      "name": "결제 조회",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -320,
        -60
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/payments/{{ $fromAI('transId', 'The transaction id.', 'number') }}",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Get payment\n\nParameters:\n- Path parameters:\n  • transId (required) - The transaction id."
      },
      "typeVersion": 4.2
    },
    {
      "id": "88a1369e-51ef-41d0-879a-6dd6630cda2f",
      "name": "사전 승인 완료",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -120,
        -60
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/payments/{{ $fromAI('transId', 'The transaction id.', 'number') }}/completions",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Complete pre-auth\n\nParameters:\n- Path parameters:\n  • transId (required) - The transaction id."
      },
      "typeVersion": 4.2
    },
    {
      "id": "5e3a4e6c-12f5-494b-8e61-a895fd739b87",
      "name": "결제 반환",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        80,
        -60
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/payments/{{ $fromAI('transId', 'The transaction id.', 'number') }}/returns",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Return payment\n\nParameters:\n- Path parameters:\n  • transId (required) - The transaction id."
      },
      "typeVersion": 4.2
    },
    {
      "id": "a3018c36-869a-4d3b-8ca1-94d78fa4fd8a",
      "name": "거래 취소",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        280,
        -60
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/payments/{{ $fromAI('transId', 'The transaction id to void.', 'number') }}/void",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Void Transaction\n\nParameters:\n- Path parameters:\n  • transId (required) - The transaction id to void."
      },
      "typeVersion": 4.2
    },
    {
      "id": "371feb84-49d2-4010-84ac-1e023cd90424",
      "name": "메모2",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -660,
        140
      ],
      "parameters": {
        "color": 3,
        "width": 1700,
        "height": 200,
        "content": "## Profiles"
      },
      "typeVersion": 1
    },
    {
      "id": "68754dbe-a628-443a-ab80-2bbf74b9b426",
      "name": "프로필 생성",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -520,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Create Profile"
      },
      "typeVersion": 4.2
    },
    {
      "id": "a9065397-5853-46e6-adb7-bede4bfce5c5",
      "name": "프로필 삭제",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -320,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}",
        "method": "DELETE",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Delete profile\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)"
      },
      "typeVersion": 4.2
    },
    {
      "id": "8b199a3c-018d-4aa4-8344-185c981f40ba",
      "name": "프로필 조회",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -120,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Get profile\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)"
      },
      "typeVersion": 4.2
    },
    {
      "id": "3d79b652-c7b0-4d8b-8403-bebd57b4762f",
      "name": "프로필 업데이트",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        80,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}",
        "method": "PUT",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Update Profile\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)"
      },
      "typeVersion": 4.2
    },
    {
      "id": "3bc55fa3-0af2-441f-b63c-68bf43f8c715",
      "name": "카드 목록 조회",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        280,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}/cards",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Get cards\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)"
      },
      "typeVersion": 4.2
    },
    {
      "id": "007af91b-fa75-4f96-aeca-fba4b6af0c13",
      "name": "카드 추가",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        480,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}/cards",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Add card\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)"
      },
      "typeVersion": 4.2
    },
    {
      "id": "db8f3d93-7143-45f2-a0b2-62674ca812c7",
      "name": "카드 삭제",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        680,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}/cards/{{ $fromAI('cardId', 'The card id.', 'number') }}",
        "method": "DELETE",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Delete card\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)\n  • cardId (required) - The card id."
      },
      "typeVersion": 4.2
    },
    {
      "id": "a14cb589-7cf0-4bb5-9dab-20a8d8bf925d",
      "name": "카드 업데이트",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        880,
        180
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/profiles/{{ $fromAI('profileId', 'The profile id. (aka CustomerCode)', 'string') }}/cards/{{ $fromAI('cardId', 'The card id.', 'number') }}",
        "method": "PUT",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Update card\n\nParameters:\n- Path parameters:\n  • profileId (required) - The profile id. (aka CustomerCode)\n  • cardId (required) - The card id."
      },
      "typeVersion": 4.2
    },
    {
      "id": "6a86caeb-81fe-4e66-a8b9-aa07ec030897",
      "name": "메모3",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -660,
        380
      ],
      "parameters": {
        "color": 4,
        "width": 300,
        "height": 200,
        "content": "## Reporting"
      },
      "typeVersion": 1
    },
    {
      "id": "469674d1-78ec-43fe-81ed-4e65e4647ff0",
      "name": "검색 쿼리",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -520,
        420
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/reports",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Search Query"
      },
      "typeVersion": 4.2
    },
    {
      "id": "d0e81d3b-fed6-490c-8fde-430c1c82a18f",
      "name": "메모4",
      "type": "n8n-nodes-base.stickyNote",
      "position": [
        -660,
        620
      ],
      "parameters": {
        "color": 5,
        "width": 300,
        "height": 200,
        "content": "## Token Iz Ation"
      },
      "typeVersion": 1
    },
    {
      "id": "25d6e319-d4ac-41d4-9510-d3c427e731c7",
      "name": "신용카드 토큰화",
      "type": "n8n-nodes-base.httpRequestTool",
      "position": [
        -520,
        660
      ],
      "parameters": {
        "url": "=https://www.beanstream.com/api/v1/scripts/tokenization/tokens",
        "method": "POST",
        "options": {},
        "authentication": "genericCredentialType",
        "genericAuthType": "httpHeaderAuth",
        "toolDescription": "Tokenize credit card"
      },
      "typeVersion": 4.2
    }
  ],
  "active": false,
  "shared": [
    {
      "role": "workflow:owner",
      "project": {
        "id": "G5fce9xGuBAsWBXe",
        "icon": null,
        "name": "David Ashby <david.ashby.lds@gmail.com>",
        "type": "personal",
        "createdAt": "2025-06-04T02:55:02.013Z",
        "updatedAt": "2025-06-04T02:56:01.361Z",
        "projectRelations": [
          {
            "role": "project:personalOwner",
            "user": {
              "id": "715c1c00-cb48-4712-9a32-f1f4b6db2b30",
              "role": "global:owner",
              "email": "david.ashby.lds@gmail.com",
              "disabled": false,
              "lastName": "Ashby",
              "settings": {
                "npsSurvey": {
                  "responded": true,
                  "lastShownAt": 1749357655581
                },
                "userActivated": true,
                "userActivatedAt": 1749075994495,
                "easyAIWorkflowOnboarded": true,
                "firstSuccessfulWorkflowId": "3N3vVikZb3MckFYm"
              },
              "createdAt": "2025-06-04T02:55:01.745Z",
              "firstName": "David",
              "isPending": false,
              "updatedAt": "2025-06-08T04:40:58.399Z",
              "mfaEnabled": false,
              "personalizationAnswers": {
                "version": "v4",
                "personalization_survey_n8n_version": "1.95.3",
                "personalization_survey_submitted_at": "2025-06-04T02:56:07.075Z"
              }
            },
            "userId": "715c1c00-cb48-4712-9a32-f1f4b6db2b30",
            "createdAt": "2025-06-04T02:55:02.013Z",
            "projectId": "G5fce9xGuBAsWBXe",
            "updatedAt": "2025-06-04T02:55:02.013Z"
          }
        ]
      },
      "createdAt": "2025-07-01T21:21:40.720Z",
      "projectId": "G5fce9xGuBAsWBXe",
      "updatedAt": "2025-07-01T21:21:40.720Z",
      "workflowId": "yJSpk7kJ1a04O1Bx"
    }
  ],
  "pinData": {},
  "settings": {
    "timezone": "America/New_York"
  },
  "createdAt": "2025-07-01T21:21:40.719Z",
  "updatedAt": "2025-07-01T21:21:56.000Z",
  "versionId": "31711dc9-631e-4d6d-a88c-de5bbfd848bf",
  "isArchived": false,
  "staticData": null,
  "connections": {
    "007af91b-fa75-4f96-aeca-fba4b6af0c13": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "3bc55fa3-0af2-441f-b63c-68bf43f8c715": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "db8f3d93-7143-45f2-a0b2-62674ca812c7": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "5732277f-4160-40f8-9efd-44d53b3aedde": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "8b199a3c-018d-4aa4-8344-185c981f40ba": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "a14cb589-7cf0-4bb5-9dab-20a8d8bf925d": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "d7dcee97-fca7-47d4-9bdb-54de5ae2ec68": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "469674d1-78ec-43fe-81ed-4e65e4647ff0": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "68754dbe-a628-443a-ab80-2bbf74b9b426": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "a9065397-5853-46e6-adb7-bede4bfce5c5": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "5e3a4e6c-12f5-494b-8e61-a895fd739b87": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "3d79b652-c7b0-4d8b-8403-bebd57b4762f": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "a3018c36-869a-4d3b-8ca1-94d78fa4fd8a": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "88a1369e-51ef-41d0-879a-6dd6630cda2f": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    },
    "25d6e319-d4ac-41d4-9510-d3c427e731c7": {
      "ai_tool": [
        [
          {
            "node": "eed93e60-7813-478b-9711-51301243fce5",
            "type": "ai_tool",
            "index": 0
          }
        ]
      ]
    }
  },
  "triggerCount": 0
}
자주 묻는 질문

이 워크플로우를 어떻게 사용하나요?

위의 JSON 구성 코드를 복사하여 n8n 인스턴스에서 새 워크플로우를 생성하고 "JSON에서 가져오기"를 선택한 후, 구성을 붙여넣고 필요에 따라 인증 설정을 수정하세요.

이 워크플로우는 어떤 시나리오에 적합한가요?

고급 - 기타, AI RAG

유료인가요?

이 워크플로우는 완전히 무료이며 직접 가져와 사용할 수 있습니다. 다만, 워크플로우에서 사용하는 타사 서비스(예: OpenAI API)는 사용자 직접 비용을 지불해야 할 수 있습니다.

워크플로우 정보
난이도
고급
노드 수22
카테고리2
노드 유형3
난이도 설명

고급 사용자를 위한 16+개 노드의 복잡한 워크플로우

저자
David Ashby

David Ashby

@cfomodz

A hacker by nature, programmer by trade ⚒️ I'm looking to collaborate on things that save human labor 📫 How to reach me Github👇 -> Discord

외부 링크
n8n.io에서 보기

이 워크플로우 공유

카테고리

카테고리: 34