Access Mastercard Developers APIs, documentation, and API specifications through MCP.
Config is the same across clients — only the file and path differ.
{
"mcpServers": {
"io-github-mastercard-developers-mcp": {
"args": [
"-y",
"@mastercard/developers-mcp"
],
"command": "npx"
}
}
}Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
The Mastercard Developers Agent Toolkit allows popular agent frameworks (currently Model Context Protocol - MCP) to integrate with Mastercard Developers for service discovery and integration guides.
Run this in your terminal to verify the server starts. Then let us know if it worked — your result helps other developers.
npx -y '@mastercard/developers-mcp' 2>&1 | head -1 && echo "✓ Server started successfully"
After testing, let us know if it worked:
Five weighted categories — click any category to see the underlying evidence.
No known CVEs.
Checked @mastercard/developers-mcp 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 / developer-tools
Read, write, and manage files on the local filesystem
A Model Context Protocol (MCP) server and CLI that provides tools for agent use when working on iOS and macOS projects.
XcodeBuildMCP provides tools for Xcode project management, simulator management, and app utilities.
Manage Supabase projects — databases, auth, storage, and edge functions
MCP Security Weekly
Get CVE alerts and security updates for io.github.Mastercard/developers-mcp and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
The Mastercard Developers Agent Toolkit allows popular agent frameworks (currently Model Context Protocol - MCP) to integrate with Mastercard Developers for service discovery and integration guides.
The toolkit provides the following tools for agents to use:
get-services-list: Lists all available Mastercard Developers Products and Services with their basic information including title, description, and service id.get-documentation: Provides an overview of all available documentation for a specific Mastercard service including section titles, descriptions, and navigation links.get-documentation-section-content: Retrieves the complete content for a specific documentation section.get-documentation-page: Retrieves the complete content of a specific documentation page.get-oauth10a-integration-guide: Retrieves the comprehensive OAuth 1.0a integration guide.get-oauth20-integration-guide: Retrieves the comprehensive OAuth 2.0 integration guide.get-openfinance-integration-guide: Retrieves the comprehensive Open Finance integration guide.get-api-operation-list: Provides a summary of all API operations for a specific Mastercard API specification including HTTP methods, request paths, titles, and descriptions.get-api-operation-details: Provides detailed information about a specific API operation including parameter definitions, request and response schemas, and technical specifications.We provide a standalone Model Context Protocol (MCP) server that can be used with MCP clients.
npx -y @mastercard/developers-mcp
For more details for the configuration options, see modelcontextprotocol directory
If you want to use the package in your project, you can install it using npm:
npm install --save @mastercard/developers-agent-toolkit
Requirements
import { MastercardDevelopersAgentToolkit } from "@mastercard/developers-agent-toolkit/mcp";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";
const server = new MastercardDevelopersAgentToolkit({});
async function main() {
const transport = new StdioServerTransport();
await server.connect(transport);
console.error("Mastercard Developers MCP Server running on stdio");
}
main().catch((error) => {
console.error("Fatal error in main():", error);
process.exit(1);
});
For more details, checkout typescript directory
Contributions are welcome. Please feel free to submit a pull request or open an issue to report a bug or suggest a feature.
This project is licensed under the MIT License. See the LICENSE file for details.