We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/shibaleo/mcpist'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
stripe.ts•295 B
import Stripe from "stripe"
// Stripe client for server-side operations
// Returns null if STRIPE_SECRET_KEY is not configured
export function createStripeClient(): Stripe | null {
const secretKey = process.env.STRIPE_SECRET_KEY
if (!secretKey) return null
return new Stripe(secretKey)
}