mcp-jazzcash
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| JAZZCASH_ENV | Yes | sandbox or production. | |
| JAZZCASH_VERSION | No | Default 1.1. | 1.1 |
| JAZZCASH_CURRENCY | No | Default PKR. | PKR |
| JAZZCASH_LANGUAGE | No | Default EN. | EN |
| JAZZCASH_PASSWORD | Yes | API password, not your portal login. | |
| JAZZCASH_REFUND_URL | No | Override endpoint URL. | |
| JAZZCASH_RETURN_URL | No | Where JazzCash redirects the customer post-payment (required for hosted checkout). | |
| JAZZCASH_INQUIRY_URL | No | Override endpoint URL. | |
| JAZZCASH_MERCHANT_ID | Yes | From the merchant portal. | |
| JAZZCASH_INTEGRITY_SALT | Yes | HMAC key for pp_SecureHash. | |
| JAZZCASH_MOBILE_WALLET_URL | No | Override endpoint URL. | |
| JAZZCASH_HOSTED_CHECKOUT_URL | No | Override endpoint URL. |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| jazzcash_create_hosted_checkoutA | Build a signed Hosted Checkout (Page Redirection) form that redirects the customer to JazzCash to pay. Returns the action URL, hidden fields, and a ready-to-use HTML form snippet. Amount is in PKR paisa (rupees * 100). |
| jazzcash_charge_mobile_walletC | Server-to-server charge against a JazzCash mobile wallet. Customer authorizes via MPIN on their phone. Amount is in PKR paisa. |
| jazzcash_inquire_transactionB | Look up the current status of a JazzCash transaction by its pp_TxnRefNo. |
| jazzcash_refund_transactionB | Issue a full or partial refund against a previously settled JazzCash transaction. Requires the merchant account to have refund permissions enabled. |
| jazzcash_environment_infoA | Returns the active environment (sandbox/production), endpoint URLs in use, and whether credentials are configured. Does not return secrets. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 5 tools
Each tool targets a distinct operation: charging mobile wallet, creating hosted checkout, environment info, inquiring transactions, and refunding. No overlap in functionality.
All names use snake_case with a consistent 'jazzcash_' prefix. Most follow a verb_noun pattern (charge_mobile_wallet, create_hosted_checkout, inquire_transaction, refund_transaction), though 'environment_info' is noun_noun, which is a minor deviation.
Five tools cover the core operations for a payment gateway integration: charge, checkout, inquiry, refund, and environment check. This is well-scoped for the stated domain.
The tool surface covers essential payment lifecycle operations: creating charges, checkout flows, status inquiry, and refunds. Missing features like void/cancel or webhook verification are minor gaps for a basic integration.