Skip to main content
Glama

Flutterwave MCP Server

index.ts613 B
import transactions from "./lib/transactions.js" import checkout from "./lib/checkout.js"; import Plan from "./lib/plan.js"; import transfer from "./lib/transfer.js"; // Cache plan instance to avoid repeated instantiation let _planInstance: Plan | null = null; export default class Flutterwave { static transactions() { return transactions; } static checkout() { return checkout; } static plans() { if (!_planInstance) { _planInstance = new Plan(); } return _planInstance; } static transfers() { return transfer; } }

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/bajoski34/mcp-flutterwave'

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