Overview
Worldpay MCP is a simple server designed for integrating with Worldpay APIs, implementing the Model Context Protocol to facilitate payment processing and queries.
To use Worldpay MCP, install the server using npm, configure it with your Worldpay credentials, and run the server to handle payment requests and queries.
- Supports multiple transport methods (stdio and SSE) - Tools for making payments, querying payment data, and generating checkout forms - Customizable server-side code generation for various payment methods
- Integrating Worldpay payment processing into web applications.
- Querying payment data for reporting and analytics.
- Generating customized checkout forms for different frameworks.
Add to your AI client
Use these steps to connect Introduction in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"worldpay-mcp-simonwfarrow": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-worldpay-mcp-simonwfarrow"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"worldpay-mcp-simonwfarrow": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-worldpay-mcp-simonwfarrow"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"worldpay-mcp-simonwfarrow": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-worldpay-mcp-simonwfarrow"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"worldpay-mcp-simonwfarrow": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-worldpay-mcp-simonwfarrow"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"worldpay-mcp-simonwfarrow": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-worldpay-mcp-simonwfarrow"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"worldpay-mcp-simonwfarrow": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-worldpay-mcp-simonwfarrow"
]
}
}
}FAQ
What programming languages does Worldpay MCP support?
Currently, it supports Node.js and Java for server-side implementations.
Is there a specific framework required for the checkout form?
The checkout form can be generated for both web and React frameworks.
How do I configure the server?
Configuration is done through a JSON file for stdio or environment variables for SSE.