other
Flutterwave MCP Integration for OpenAI Agents SDK
Connect Flutterwave to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Flutterwave to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
Flutterwave MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-flutterwave": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=flutterwave",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=flutterwave --write=deny Why Use KosmoKrator Here
Expose only Flutterwave instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
Flutterwave Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Flutterwave integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__flutterwave__flutterwave_list_transactions | flutterwave.flutterwave_list_transactions | Read | List transactions from your Flutterwave account. Supports filtering by status and date range, with pagination. |
integration__flutterwave__flutterwave_get_transaction | flutterwave.flutterwave_get_transaction | Read | Retrieve full details of a specific Flutterwave transaction by its ID. |
integration__flutterwave__flutterwave_initiate_payment | flutterwave.flutterwave_initiate_payment | Write | Initiate a new payment on Flutterwave. Requires a transaction reference, amount, currency, and customer details. |
integration__flutterwave__flutterwave_verify_transaction | flutterwave.flutterwave_verify_transaction | Read | Verify a Flutterwave transaction by its ID to confirm payment status and retrieve full details. |
integration__flutterwave__flutterwave_list_customers | flutterwave.flutterwave_list_customers | Read | List customers registered on your Flutterwave account, with pagination support. |
integration__flutterwave__flutterwave_create_customer | flutterwave.flutterwave_create_customer | Write | Create a new customer record on Flutterwave. Requires an email address. |
integration__flutterwave__flutterwave_get_banks | flutterwave.flutterwave_get_banks | Read | Get a list of supported banks for a given country from Flutterwave. Provide a country code like "NG" for Nigeria, "KE" for Kenya, "GH" for Ghana. |