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
list-endpoints - List all API paths and their HTTP methods
execute-request - Make API calls directly from your specification get-endpoint - Pull in detailed endpoint information on demand get-request-body - Access structured request parameters get-response-schema - Understand what your API returns list-endpoints - Browse all available API endpoints list-security-schemes - Access authentication requirements search-schema - Find exactly what you need in your API spec get-code-snippet - Example code snippets in your preferred language to interact with your endpoin
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"
The AI should now have access to your PPRO API account data and documentation through the MCP server.
Updated 2 days ago