#!/usr/bin/env node /** * RevealUI Stripe MCP Server * * Model Context Protocol server that exposes Stripe payment management tools * scoped to RevealUI's subscription model. Gives AI agents structured access * to customer, subscription, and payment intent data in RevealUI's Stripe account. * * Environment: * STRIPE_SECRET_KEY - Stripe secret key (sk_live_... or sk_test_...) * * Tools: * stripe_create_payment_intent - Create a one-time payment intent * stripe_list_customers - List customers, with optional email filter * stripe_get_customer - Fetch a customer and their active subscription * stripe_list_subscriptions - List subscriptions (all or by customer/status) */ /** * Set credential overrides for this server. * Called by the Hypervisor with resolved tenant credentials. */ export declare function setCredentials(creds: Record): void; //# sourceMappingURL=revealui-stripe.d.ts.map