MCP server
Our Model Context Protocol (MCP) server enables AI-powered code editors like Cursor and Windsurf, plus general-purpose tools like Claude Desktop to interact with the PPRO API. This enables developers to interact with PPRO’s platform more efficiently, streamline payment integrations, and build new commerce solutions faster.
What is MCP?
Model Context Protocol (MCP) is an open standard that allows AI applications to securely access external data sources and tools. The PPRO API MCP server provides AI agents with:
- Direct API access to functionality
- Schema search capabilities
- Code generation assistance for integrations
MCP server setup
PPRO hosts a remote MCP server at https://developerhub.ppro.com/mcp. Configure your AI development tools to connect to this server.
To make API calls directly from your MCP client, configure authentication headers.
Add to~/.cursor/mcp.json:
{
"mcpServers": {
"ppro-global-api": {
"url": "https://developerhub.ppro.com/mcp",
"headers": {
"Authorization": "Bearer {YOUR_API_KEY}",
"Merchant-Id": "{YOUR_MERCHANT_ID}"
}
}
}
}Tools
Payment charges |
|
Others |
|
Testing Your MCP Setup
Once configured, you can test your MCP server connection:
- Open your AI editor (Cursor, Windsurf, etc.)
- Start a new chat with the AI assistant
- Ask about PPRO API - try questions like:
- "How do I [common use case]?"
- "Show me an example of [API functionality]"
- "Create a [integration type] using PPRO API"
Updated 3 days ago