Skip to main content

Quickstart

Get up and running with Cube2 for Stripe in under 10 minutes.

Prerequisites​

  • An LLM tool that supports MCP (Claude Desktop, Cursor, etc.)
  • Python 3.13+ with uv package manager

Step 1: Configure Your LLM Tool​

Add cube2_stripe to your MCP configuration:

{
"mcpServers": {
"cube2_stripe": {
"command": "/path/to/uv",
"args": [
"--directory",
"/path/to/stripe/cube_2_stripe",
"run",
"assistant.py"
]
}
}
}

For detailed setup, choose your LLM tool:

Step 2: Test It​

  1. Open your LLM tool and type: "hi cube2"
  2. You should see the Stripe Payment Integration welcome message
  3. Try a mapping request: "Map a guest checkout payment"

See Test It → for more testing examples.

Step 3: Start Mapping​

Ask Cube2 to map your business scenarios:

RequestWhat It Does
"Map a guest checkout payment"Single payment without saving card
"Map a subscription setup"First payment + save card for recurring
"Map a refund"Return funds to customer

What's Next?​