AgentStack
Browse Sign in
Browse Why AgentStack Sell Docs
Sign in
MCP verified MIT Self-run

Paystack Mcp

mcp-kohasummons-paystack-mcp · by kohasummons

The Paystack MCP for your AI Agents

No reviews yet
0 installs
40 views
0.0% view→install

Install

$ agentstack add mcp-kohasummons-paystack-mcp

✓ scanned · ✓ verified, works with Claude Code, Cursor, and more.

Security review

✓ Passed

No issues found. Passed automated security review. · v0.1.0 How review works →

  • Prompt-injection patterns
  • Secret / credential exfiltration
  • Dangerous shell & filesystem operations
  • Untrusted network calls
  • Known-malicious package signatures

What it can access

  • Network access No
  • Filesystem access No
  • Shell / process execution No
  • Environment & secrets Used
  • Dynamic code execution No

From automated source analysis of v0.1.0. “Used” means the capability is present in the source — more access means more to trust, not that it’s unsafe.

View the full security report →

Verified badge

Passed review? Show it. Paste this badge into your README, it links to the public security report.

AgentStack Verified badge Links to your public security report.
[![AgentStack Verified](https://agentstack.voostack.com/badges/verified.svg)](https://agentstack.voostack.com/security/report/mcp-kohasummons-paystack-mcp)

Reliability & compatibility

Security review passed
0 installs to date
no reviews yet
stale · 1y ago

Declared compatibility

Claude CodeClaude DesktopCursorWindsurf

Compatibility is declared by the source manifest. End-to-end runtime verification is coming, see below.

Preview Execution monitoring

We're building live execution health for every listing: tool-call success rate, median latency, uptime, and last-checked timestamps, measured, not self-reported. It isn't live yet, so we don't show numbers we can't stand behind.

How agent discovery & health will work →
Are you the author of Paystack Mcp? Claim this listing to set pricing, connect Stripe payouts, and keep 70% of every sale.
Sign up to claim

About

Paystack MCP Server

The Paystack Model Context Protocol (MCP) server allows AI agents to interact with Paystack through standardized MCP clients via tool calling. This protocol supports various tools to interact with different Paystack services.

[](https://smithery.ai/server/@kohasummons/paystack-mcp)

Features

  • Create and manage products in your Paystack store
  • Handle customer management (create, list, update, validate)
  • Process transactions (initialize, verify, charge authorization)
  • Manage authorizations and payments
  • Access bank information and country data
  • Export transaction data and view transaction totals

Setup

Make sure to replace your_paystack_secret_key_here with your actual Paystack secret key.

Installing via Smithery

To install Paystack MCP for Claude Desktop automatically via Smithery:

npx -y @smithery/cli install @kohasummons/paystack-mcp --client claude
Manual Installation
npm install -g @kohasummons/paystack-mcp

Usage

Start the server by running:

paystack-mcp

Or use with npx in your MCP configuration:

{
  "mcpServers": {
    "paystack-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@kohasummons/paystack-mcp"
      ],
"env": {
        "PAYSTACK_SECRET_KEY": "your_paystack_secret_key_here"
      }
    }
  }
}

Using with Claude Desktop

Add the following to your claude_desktop_config.json. See here for more details.

{
  "mcpServers": {
    "paystack-mcp": {
      "command": "npx",
      "args": ["-y", "@kohasummons/paystack-mcp"],
      "env": {
        "PAYSTACK_SECRET_KEY": "your_paystack_secret_key_here"
      }
    }
  }
}

Using with Goose

Copy and paste the link below into a browser address bar to add this extension to goose desktop:

goose://extension?cmd=npx&arg=-y&arg=@kohasummons/paystack-mcp&id=paystack-mcp&name=Paystack%20MCP&description=process%20payments%20with%20Paystack

After installation, set your Paystack secret key in the extension settings.

Using with CLI

Install the package globally:

npm install -g @kohasummons/paystack-mcp

Set your Paystack secret key as an environment variable:

export PAYSTACK_SECRET_KEY=your_paystack_secret_key_here  # For macOS/Linux
# OR
set PAYSTACK_SECRET_KEY=your_paystack_secret_key_here     # For Windows

Start the server by running:

paystack-mcp

Or use with NPX directly:

PAYSTACK_SECRET_KEY=your_paystack_secret_key_here npx -y @kohasummons/paystack-mcp

Using with Cursor

Add this to your Cursor MCP configuration:

{
  "mcpServers": {
    "paystack-mcp": {
      "command": "npx",
      "args": ["-y", "@kohasummons/paystack-mcp"],
      "env": {
        "PAYSTACK_SECRET_KEY": "your_paystack_secret_key_here"
      }
    }
  }
}

Using with Docker

You can run the Paystack MCP server via Docker:

Build the image

docker-compose build

Run as a standalone server

docker-compose up -d
Use with Cursor

Add to your .cursor/mcp.json:

{
  "mcpServers": {
    "paystack-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-e", 
        "PAYSTACK_SECRET_KEY=your_paystack_secret_key_here",
        "kohasummons/paystack-mcp"
      ]
    }
  }
}
Use with Claude Desktop
{
  "mcpServers": {
    "paystack-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "-e", 
        "PAYSTACK_SECRET_KEY=your_paystack_secret_key_here",
        "kohasummons/paystack-mcp"
      ]
    }
  }
}

See [DOCKER.md](DOCKER.md) for detailed Docker instructions.

Tools

Products

| Tool | Description | Example Prompt | | ---- | ----------- | -------------- | | createproduct | Create a new product | "Create a new product called 'Premium Plan' with a price of 5000 naira" | | listproducts | List all products | "Show me all the products in my Paystack store" | | getproduct | Get details of a specific product | "Get the details of product ID 12345" | | updateproduct | Update an existing product's details | "Update the price of product ID 12345 to 6000 naira" |

Customers

| Tool | Description | Example Prompt | | ---- | ----------- | -------------- | | createcustomer | Create a new customer | "Create a new customer with email john@example.com" | | listcustomers | List all customers | "Show me all my customers" | | getcustomer | Get details of a specific customer | "Get the details for customer with email john@example.com" | | updatecustomer | Update a customer's details | "Update John Doe's phone number to +2341234567890" | | validatecustomer | Validate a customer's identity with their bank account | "Verify customer CUS123 with their bank account details" | | setcustomerriskaction | Whitelist or blacklist a customer | "Blacklist customer CUS123 from making transactions" |

Transactions

| Tool | Description | Example Prompt | | ---- | ----------- | -------------- | | initializetransaction | Initialize a payment transaction | "Start a new payment of 5000 naira for customer john@example.com" | | verifytransaction | Verify the status of a transaction | "Check the status of transaction with reference TR123456" | | fetchtransaction | Get details of a transaction | "Get details of transaction ID 12345" | | listtransactions | List transactions with various filters | "Show me all successful transactions in the last month" | | chargeauthorization | Charge a previously authorized card | "Charge customer john@example.com 5000 naira using their saved card" | | partialdebit | Charge a partial amount from authorized card | "Charge a partial amount of 3000 naira from john@example.com's saved card" | | deactivateauthorization | Deactivate a payment authorization | "Remove the saved card with authorization code AUTH123" | | transactiontotals | Get total amount received on your account | "What's the total amount received in my account last month?" | | export_transactions | Export a list of transactions | "Export all my transactions from January 2023" |

Banking Information

| Tool | Description | Example Prompt | | ---- | ----------- | -------------- | | listbanks | Get a list of banks supported by Paystack | "Show me all supported banks in Nigeria" | | listcountries | Get a list of countries supported by Paystack | "Which countries does Paystack support?" | | list_states | Get a list of states for a country | "List all states in Nigeria for address verification" |

Contributing

We welcome contributions to help improve this project and implement the remaining Paystack API endpoints! There are many more Paystack features that could be added as tools, including:

  • Payment Pages
  • Subaccounts
  • Plans
  • Subscriptions
  • Apple Pay
  • Virtual Accounts
  • Invoices
  • Refunds
  • And more!

See [CONTRIBUTING.md](CONTRIBUTING.md) for detailed instructions on how to contribute, including:

  • Setting up your development environment
  • Guide for implementing new tools
  • Code style guidelines
  • Pull request process

Development

To work on this project:

  1. Clone the repository
  2. Install dependencies: npm install
  3. Build the project: npm run build
  4. Run the Inspector: npm run dev:debug

You'll need to set up your Paystack secret key as an environment variable:

# Create a .env file in the project root
echo "PAYSTACK_SECRET_KEY=your_paystack_secret_key_here" > .env

Debugging

To debug your server, you can use the MCP Inspector.

First build the server

npm run build

Run the following command in your terminal:

# Start MCP Inspector and server
npm run dev:debug

Add your PAYSTACK_SECRET_KEY to the enviroment variable in the Inspector UI. Debug away!

Docker Support

See [DOCKER.md](DOCKER.md) for details on building and running with Docker.

License

MIT

Source & license

This open-source MCP server is cataloged on AgentStack and links to its original source — we do not rehost the code.

Install and usage instructions live in the source repository linked above.

Reviews

No reviews yet, be the first.

Versions

  • v0.1.0 Imported from the upstream source.