data
Paystack MCP, CLI, and Lua Integration for AI Agents
Paystack integration docs for AI agents: MCP gateway setup, Paystack CLI commands, Lua API reference, credentials, and function schemas.Paystack for agents
Credentials can be configured manually in web or CLI hosts.
Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.
Agent Surfaces
Machine-Readable Metadata
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
paystack.paystack_list_transactions | Read read | 6 | List transactions on your Paystack integration. Supports filtering by status, customer, and date range with pagination. |
paystack.paystack_get_transaction | Read read | 1 | Get details of a specific Paystack transaction by its numeric ID. Use paystack_verify_transaction when you have a reference. |
paystack.paystack_verify_transaction | Read read | 1 | Verify a Paystack transaction by reference. Use this after checkout redirects or webhook delivery to confirm final payment status. |
paystack.paystack_initialize_transaction | Write write | 4 | Initialize a new payment transaction on Paystack. Returns an authorization URL for the customer to complete payment. |
paystack.paystack_list_customers | Read read | 2 | List customers on your Paystack integration. Supports pagination. |
paystack.paystack_create_customer | Write write | 4 | Create a new customer on your Paystack integration. |
paystack.paystack_list_plans | Read read | 3 | List subscription plans on your Paystack integration. Supports filtering by status and pagination. |
paystack.paystack_get_current_user | Read read | 0 | Verify the Paystack API connection and retrieve integration payment session timeout settings. Use this to check if the API key is valid and the service is reachable. |