paystack-mcp-server
OfficialClick on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@paystack-mcp-servershow my last 5 transactions"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Paystack MCP Server
A Model Context Protocol (MCP) server that enables AI assistants to interact with the full range of Paystack APIs.
Public Preview: This MCP server is currently in public preview. We're seeking early feedback to improve the next iteration, so use cautiously and report any issues you encounter.
Quick Start
Install and run via npm (recommended):
npx @paystack/mcp-server --api-key sk_test_your_key_hereOr for local development, clone and build:
git clone https://github.com/PaystackOSS/paystack-mcp-server.git
cd paystack-mcp-server
npm install
npm run buildThen configure your MCP client to use the server (see Client Integration).
Requirements
Node.js v18+
npm or yarn
A Paystack test secret key (starts with
sk_test_)
Configuration Options
Environment Variable | Purpose |
| Your Paystack test secret key (fallback if no CLI arg) |
You can provide your API key in two ways:
CLI argument (recommended):
--api-key sk_test_...Environment variable: Set
PAYSTACK_TEST_SECRET_KEY
Security note: Only test keys (
sk_test_*) are allowed. The server validates this at startup and will reject live keys.
Client Integration
The Paystack MCP Server works with any MCP-compatible client. Below is the standard configuration schema used by most clients (Claude Desktop, ChatGPT Desktop, Cursor, Windsurf, etc.).
Using npm (recommended)
For npm-installed server:
{
"mcpServers": {
"paystack": {
"command": "npx",
"args": ["@paystack/mcp-server", "--api-key", "sk_test_..."]
}
}
}Using a local build
If you've cloned and built the server locally:
{
"mcpServers": {
"paystack": {
"command": "node",
"args": ["/path/to/paystack-mcp-server/build/index.js"],
"env": {
"PAYSTACK_TEST_SECRET_KEY": "sk_test_..."
}
}
}
}When settingcommand: "node", you should ensure you're using Node v18+. If you are using a package manager, you might need to get the path of your Node binary by running this command in your CLI:
Linux and MacOS
which nodeWindows
where nodeOnce you have the path, use it as the value of the MCP Server command in the JSON configuration. e.g., command: "path/to/installation/bin/node"
Where to add this configuration
Client | Config file location |
VS Code |
|
Claude Desktop |
|
ChatGPT Desktop | MCP settings in app preferences |
Cursor |
|
Windsurf | MCP configuration in settings |
Claude Code |
|
How It Works
The Paystack MCP Server exposes the entire Paystack API to AI assistants by parsing Paystack's OpenAPI specification at runtime. Instead of hardcoding individual endpoints, the server dynamically discovers all available operations and makes them accessible through a small set of tools.
Available Tools
Tool | Description |
| Fetch operation details (method, path, parameters) by operation ID |
| Execute a Paystack API request |
Available Resources
Resource | URI | Description |
|
| List all available Paystack operations and their details |
Example
When you ask your AI assistant something like "Get me the last 5 transactions on my Paystack integration", here's what happens behind the scenes:
The assistant calls
get_paystack_operation("transaction_list")to look up the endpoint detailsIt gets back the method (
GET), path (/transaction), and available query parametersIt then calls
make_paystack_requestwith{ method: "GET", path: "/transaction", data: { perPage: 5 } }You get your transactions
Prompt recommendation
To get the best results when using this MCP server, be specific in your prompts and always include "Paystack" in your requests. The server provides built-in instructions and a knowledge resource (paystack://skill) that help the AI assistant find the right documentation, code snippets, and API details.
Good prompts:
"Initialize a Paystack transaction for 50000 NGN"
"Create a customer with email user@example.com on my Paystack account"
"How can I send money with the Paystack API?"
"Show me a cURL example for verifying a Paystack transaction"
Less effective prompts:
"List my transactions" (unclear which service to use)
"Charge a customer" (missing context about Paystack)
Being explicit ensures the LLM narrows down to the right tool quickly and reduces ambiguity.
Development
Run locally (without building)
For local development and testing, you can run the TypeScript source directly:
PAYSTACK_TEST_SECRET_KEY=sk_test_... npm run devRun with MCP Inspector
npm run inspectBuild
npm run buildRun tests
npm testTroubleshooting
Issue | Solution |
Server exits silently at startup | Check that |
"Invalid key" error | Key must start with |
Tools not appearing in client | Ensure the server is running and the client config path is correct |
Request timeouts | Check network connectivity to |
Contributing
Pull requests are welcome. For major changes, please open an issue first to discuss what you would like to change.
See CONTRIBUTING.md for more details.
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/PaystackOSS/paystack-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server