A Model Context Protocol (MCP) server that lets conversational and autonomous agents securely access and manage HiPay’s payment services.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"hipay-mcp-server": {
"args": [
"-y",
"@hipay/mcp-server"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
A Model Context Protocol (MCP) server for integrating with HiPay's Enterprise payment processing API. This server provides comprehensive tools to interact with HiPay's transaction management, payment processing, and security features through a standardized MCP interface.
This server supports HTTP transport. Be the first to test it — help the community know if it works.
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @hipay/mcp-server against OSV.dev.
Click any tool to inspect its schema.
Be the first to review
Have you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Others in finance
Real-time financial market data: stocks, forex, crypto, commodities, and economic indicators
A Model Context Protocol server for building an investor agent
AI agents get on-chain identity, credentials, reputation, escrow, and persistent memory on XRPL.
Remote MCP server to integrate and validate self-hosted PayRam deployments.
MCP Security Weekly
Get CVE alerts and security updates for Hipay Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
A Model Context Protocol (MCP) server for integrating with HiPay's Enterprise payment processing API. This server provides comprehensive tools to interact with HiPay's transaction management, payment processing, and security features through a standardized MCP interface.
# Using environment variables
export HIPAY_USERNAME="your_username"
export HIPAY_PASSWORD="your_password"
export HIPAY_ENVIRONMENT="stage"
npx @hipay/mcp-server --tools=transactions.get,transactions.update
# Using command line arguments
npx @hipay/mcp-server \
--tools=all \
--username=your_username \
--password=your_password \
--environment=production
# Enable specific tools
npx @hipay/mcp-server \
--tools=transactions.get,transactions.update \
--username=your_username \
--password=your_password
transactions.get - Retrieve transaction details by ID (V3 API)
transactions.getV1 - Retrieve transaction details by ID (V1 API)
transactions.getByOrder - Get all transactions for an order
transactions.update - Update a transaction (capture, refund, accept, etc.)
hostedPaymentPages.create - Create a hosted payment pageYou can enable specific tools or all tools:
--tools=all - Enable all available tools--tools=transactions.get,transactions.update - Enable specific tools (comma-separated)--tools= - If omitted, all tools are enabled by defaultstage - Use HiPay's staging environment (default)production - Use HiPay's production environmentHIPAY_USERNAME - Your HiPay API username (required)HIPAY_PASSWORD - Your HiPay API password (required)HIPAY_ENVIRONMENT - Environment to use: stage or production (default: stage)--tools - Comma-separated list of tools to enable, or all for all tools (required)--username - HiPay API username (optional if HIPAY_USERNAME is set)--password - HiPay API password (optional if HIPAY_PASSWORD is set)--environment - Environment to use: stage or production (default: stage)For issues and questions, please open an issue in the repository.