stripe

Official

remote-capable server

The server can be hosted and run remotely because it primarily relies on remote services or has no dependency on the local environment.

Integrations

  • Allows integration with Stripe APIs through function calling, enabling operations such as creating/reading customers, products, prices, payment links, invoices, invoice items, as well as retrieving balance information, creating refunds, reading payment intent information, and searching Stripe documentation.

Stripe 모델 컨텍스트 프로토콜

Stripe 모델 컨텍스트 프로토콜 서버를 사용하면 함수 호출을 통해 Stripe API와 통합할 수 있습니다. 이 프로토콜은 다양한 Stripe 서비스와 상호 작용하는 데 필요한 다양한 도구를 지원합니다.

설정

npx를 사용하여 Stripe MCP 서버를 실행하려면 다음 명령을 사용하세요.

지엑스피1

YOUR_STRIPE_SECRET_KEY 실제 Stripe 비밀 키로 바꿔야 합니다. 또는 환경 변수에 STRIPE_SECRET_KEY를 설정할 수도 있습니다.

Claude Desktop과 함께 사용

claude_desktop_config.json 파일에 다음을 추가하세요. 자세한 내용은 여기를 참조하세요.

{ "mcpServers": { "stripe": { "command": "npx", "args": [ "-y", "@stripe/mcp", "--tools=all", "--api-key=STRIPE_SECRET_KEY" ] } } }

Docker를 사용하는 경우

{ “mcpServers”: { “stripe”: { “command”: “docker", “args”: [ “run”, "--rm", "-i", “mcp/stripe”, “--tools=all”, “--api-key=STRIPE_SECRET_KEY” ] } } }

사용 가능한 도구

도구설명
customers.create새로운 고객 만들기
customers.read고객 정보 읽기
products.create새로운 제품을 만드세요
products.read제품 정보를 읽어보세요
prices.create새로운 가격 만들기
prices.read가격 정보를 읽어보세요
paymentLinks.create새로운 결제 링크를 만드세요
invoices.create새로운 송장을 만드세요
invoices.update기존 송장 업데이트
invoiceItems.create새로운 송장 항목 만들기
balance.read잔액 정보 검색
refunds.create새로운 환불을 생성하세요
paymentIntents.read결제 의도 정보 읽기
subscriptions.read구독 정보 읽기
subscriptions.update구독 정보 업데이트
coupons.create새로운 쿠폰을 만드세요
coupons.read쿠폰 정보 읽기
documentation.readStripe 문서 검색

서버 디버깅

서버를 디버깅하려면 MCP Inspector를 사용할 수 있습니다.

먼저 서버를 빌드하세요

npm run build

터미널에서 다음 명령을 실행하세요.

# Start MCP Inspector and server with all tools npx @modelcontextprotocol/inspector node dist/index.js --tools=all --api-key=YOUR_STRIPE_SECRET_KEY

Docker를 사용하여 빌드

먼저 서버를 빌드하세요

docker build -t mcp/stripe .

터미널에서 다음 명령을 실행하세요.

docker run -p 3000:3000 -p 5173:5173 -v /var/run/docker.sock:/var/run/docker.sock mcp/inspector docker run --rm -i mcp/stripe --tools=all --api-key=YOUR_STRIPE_SECRET_KEY

지침

  1. YOUR_STRIPE_SECRET_KEY 실제 Stripe API 비밀 키로 바꾸세요.
  2. MCP Inspector를 시작하려면 명령을 실행하세요.
  3. 브라우저에서 MCP Inspector UI를 열고 연결을 클릭하여 MCP 서버를 시작합니다.
  4. 선택한 도구 목록을 보고 각 도구를 개별적으로 테스트할 수 있습니다.
-
security - not tested
A
license - permissive license
-
quality - not tested

Stripe 모델 컨텍스트 프로토콜 서버를 사용하면 함수 호출을 통해 Stripe API와 통합할 수 있습니다. 이 프로토콜은 다양한 Stripe 서비스와 상호 작용하는 데 필요한 다양한 도구를 지원합니다.

  1. Setup
    1. Usage with Claude Desktop
  2. Available tools
    1. Debugging the Server
      1. Build using Docker
      2. Instructions
    ID: 1m8tlvbsuh