Skip to main content
Glama
paybridgenp

PayBridgeNP MCP Server

by paybridgenp

@paybridge-np/mcp

네팔 결제 게이트웨이인 PayBridgeNP를 위한 공식 Model Context Protocol 서버입니다.

Claude, ChatGPT, Cursor, Claude Code, VS Code 등 MCP 호환 AI 어시스턴트가 자연어를 통해 PayBridgeNP 계정을 읽고 조작할 수 있게 합니다. 채팅만으로 환불 처리, 결제 링크 생성, 구독 관리, 실패한 웹훅 검사, KPI 추출 등을 수행하세요.

69개의 도구. 6개의 내장 프롬프트 템플릿. 범위가 지정된 토큰. 지출 한도. 전체 감사 추적.

설치

Claude Desktop

~/Library/Application Support/Claude/claude_desktop_config.json(macOS) 또는 %APPDATA%\Claude\claude_desktop_config.json(Windows)에 추가하세요:

{
  "mcpServers": {
    "paybridge": {
      "command": "npx",
      "args": ["-y", "@paybridge-np/mcp@latest"],
      "env": {
        "PAYBRIDGE_API_KEY": "sk_live_..."
      }
    }
  }
}

Claude Desktop을 재시작하세요.

Cursor

.cursor/mcp.json 또는 설정 → MCP를 통해 동일한 JSON을 추가하세요.

Claude Code

claude mcp add paybridge \
  --env PAYBRIDGE_API_KEY=sk_live_... \
  -- npx -y @paybridge-np/mcp@latest

VS Code

.vscode/mcp.json:

{
  "servers": {
    "paybridge": {
      "type": "stdio",
      "command": "npx",
      "args": ["-y", "@paybridge-np/mcp@latest"],
      "env": { "PAYBRIDGE_API_KEY": "sk_live_..." }
    }
  }
}

PayBridgeNP 대시보드에서 범위가 지정된 MCP 토큰을 생성하세요. 전체 액세스 권한이 있는 REST 키를 붙여넣지 마세요.

Related MCP server: PayArk MCP Server

도구 (69)

읽기 (31)

카테고리

도구

계정

get_account

결제

list_payments, get_payment

환불

list_refunds, get_refund

세션

list_checkout_sessions, get_checkout_session

결제 링크

list_payment_links, get_payment_link

웹훅

list_webhook_endpoints, list_webhook_deliveries

플랜

list_plans, get_plan

고객

list_customers, get_customer

구독

list_subscriptions, get_subscription

인보이스

list_invoices, get_invoice

쿠폰

list_coupons, get_coupon

프로모션

list_promotion_codes, get_promotion_code, validate_promotion_code

세금

get_tax_settings

독촉(Dunning)

list_dunning_policies, get_dunning_invoice_status

사용량

preview_subscription_proration, get_subscription_usage_summary, list_usage_records

분석

get_analytics_overview

쓰기 (38)

자금 이동 도구(create_refund, cancel_subscription, delete_*)는 실행 전 호스트 UI에서 명시적인 확인이 필요합니다.

카테고리

도구

결제

create_checkout_session

환불

create_refund

결제 링크

create_payment_link, update_payment_link, cancel_payment_link, delete_payment_link

웹훅

create_webhook_endpoint, update_webhook_endpoint, delete_webhook_endpoint

플랜

create_plan, update_plan

고객

create_customer, update_customer, add_customer_credit

구독

create_subscription, pause_subscription, resume_subscription, cancel_subscription, change_subscription_plan, end_trial, extend_trial

인보이스

create_invoice_item, delete_invoice_item

쿠폰

create_coupon, deactivate_coupon

프로모션

create_promotion_code, deactivate_promotion_code, apply_coupon_to_subscription, remove_subscription_discount

세금

update_tax_settings

독촉(Dunning)

create_dunning_policy, update_dunning_policy, set_subscription_dunning_policy, stop_invoice_dunning, retry_invoice_dunning_now

사용량

report_subscription_usage, update_subscription_quantity

프롬프트

6개의 내장 프롬프트 템플릿 — Claude Desktop 및 Cursor에서 슬래시 명령어로 표시됩니다 (/paybridge 입력):

프롬프트

기능

daily_summary

일일 요약: 수익, 결제, 환불, 결제 퍼널, 웹훅 실패

monthly_reconciliation

회계사에게 공유할 수 있는 월간 정산 표. 선택적 month 인수(예: 2026-04) 사용 가능

investigate_failed_payment

결제 실패 원인 진단 — 선택적 payment_id 또는 customer_email 사용 가능

onboard_customer

고객 생성 + 플랜 구독을 한 번에 처리. email, name, plan_id, 선택적 coupon_code 사용

review_dunning

연체된 모든 인보이스 나열, 재시도/중단/대기 분류, 확인 후 조치

apply_discount

프로모션 코드 검증 및 구독에 적용, 적용 전후 가격 표시

보안

  • 범위가 지정된 토큰 — 읽기/쓰기/민감 정보로 그룹화된 16개의 범위. 기본적으로 읽기 전용이며, 쓰기는 카테고리별로 선택 가능합니다. PII(이메일, 전화번호)는 별도의 범위로 관리됩니다.

  • 확인 절차 — 환불 및 대규모 결제 세션은 실행 전 호스트 UI에서 명시적인 확인이 필요합니다.

  • 24시간 지출 한도 — 토큰당 환불 및 결제 세션에 대한 엄격한 롤링 한도. 쓰기 토큰의 경우 기본적으로 50,000 루피로 설정됩니다.

  • 토큰별 속도 제한 — 전체 60회 호출/60초, 파괴적 작업 6회/60초, 확인 필요 작업 2회/60초.

  • 프롬프트 인젝션 방어 — 고객 제어 필드는 <untrusted> 데이터로 래핑됩니다. 너비가 0인 문자는 제거됩니다. 출력 시 비밀 정보는 패턴에 따라 마스킹됩니다.

  • 전체 감사 추적 — 모든 도구 호출은 토큰 ID 및 어시스턴트 이름과 함께 기록되며 /dashboard/mcp에서 확인할 수 있습니다.

  • 오픈 소스github.com/paybridgenp/paybridgenp-mcp에서 키에 대해 실행되는 내용을 정확히 감사할 수 있습니다.

구성

환경 변수

필수

기본값

PAYBRIDGE_API_KEY

PAYBRIDGE_API_BASE_URL

아니요

https://api.paybridgenp.com

CLI 인수로 --api-key=sk_live_...를 전달할 수도 있습니다.

라이선스

MIT — LICENSE를 참조하세요.

A
license - permissive license
Not graded
quality - not tested
B
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • A
    license
    Not graded
    quality
    A
    maintenance
    Enables AI agents to interact with Juspay's payment processing APIs and merchant dashboard for managing orders, transactions, refunds, customers, gateways, and reporting through natural language.
    21
    Apache 2.0
  • A
    license
    Not graded
    quality
    D
    maintenance
    Connects AI agents to Nepal's payment infrastructure through the PayArk API. It enables users to monitor transaction history, manage projects, and generate hosted checkout links using natural language.
    12
    MIT
  • A
    license
    A
    quality
    B
    maintenance
    Enables AI assistants to interact with the full range of Paystack APIs, allowing operations like transaction management, customer creation, and payments through natural language.
    2
    33
    53
    MIT

View all related MCP servers

Related MCP Connectors

  • Connect AI agents to bank accounts, transactions, balances, and investments.

  • Read-only bank access for your AI agent. Connects Claude, ChatGPT, Cursor, Gemini, Codex.

  • Let AI agents add Yolfi crypto checkout, paylinks, webhooks, and status checks.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/paybridgenp/paybridgenp-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server