by visaacceptance
Integrates Visa Acceptance APIs for invoice management and automation. Streamline billing with payment links and Cyberso
Integrates with Visa Acceptance APIs to manage invoices and payment links, with Cybersource-backed payment processing for automated billing workflows.
Visa Acceptance is an official MCP server published by visaacceptance that provides AI assistants with tools and capabilities via the Model Context Protocol. Integrates Visa Acceptance APIs for invoice management and automation. Streamline billing with payment links and Cyberso It is categorized under finance.
You can install Visa Acceptance in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport.
MIT
Visa Acceptance is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
Visa Acceptance is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
Visa Acceptance is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We wired Visa Acceptance into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
We evaluated Visa Acceptance against two servers with overlapping tools; this profile had the clearer scope statement.
We wired Visa Acceptance into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
Visa Acceptance is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
According to our notes, Visa Acceptance benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Visa Acceptance is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
According to our notes, Visa Acceptance benefits from clear Model Context Protocol framing — fewer ambiguous “AI plugin” claims.
Visa Acceptance has been reliable for tool-calling workflows; the MCP profile page is a good permalink for internal docs.
showing 1-10 of 74
The Visa Acceptance Agent Toolkit seamlessly integrates with Vercel's AI SDK and the Model Context Protocol (MCP) for Visa Acceptance APIs. It offers a specialized set of tools designed to help you manage invoices, create payment links, and perform other Visa Acceptance-related operations.
If you simply want to use the toolkit without modifying its source code, install it via:
npm install @visaacceptance/agent-toolkit
Configure the toolkit with your Visa Acceptance account credentials. These credentials can be set using environment variables (MERCHANT_ID, API_KEY_ID, SECRET_KEY).
import { VisaAcceptanceAgentToolkit } from "@visaacceptance/agent-toolkit/ai-sdk";
const toolkit = new VisaAcceptanceAgentToolkit({
merchantId: process.env.VISA_ACCEPTANCE_MERCHANT_ID,
apiKeyId: process.env.VISA_ACCEPTANCE_API_KEY_ID,
secretKey: process.env.VISA_ACCEPTANCE_SECRET_KEY,
configuration: {
actions: {
invoices: {
create: true,
update: true,
list: true,
get: true,
send: true,
cancel: true
},
paymentLinks: {
create: true,
update: true,
list: true,
get: true,
},
},
},
});
To use this toolkit with Vercel's AI SDK:
import { AI } from "@vercel/ai";
import { VisaAcceptanceAgentToolkit } from "@visaacceptance/agent-toolkit/ai-sdk";
const toolkit = new VisaAcceptanceAgentToolkit({
merchantId: process.env.MERCHANT_ID,
apiKeyId: process.env.API_KEY_ID,
secretKey: process.env.SECRET_KEY,
configuration: {
actions: {
invoices: {
create: true,
}
},
},
});
const ai = new AI({
tools: toolkit.getTools(),
});
// Sample usage:
const response = await ai.run({
messages: [{ role: "user", content: "Please create an invoice for $200" }],
});
You can set default behaviors or environments via the configuration.context block. For example, enabling test environments:
const toolkit = new VisaAcceptanceAgentToolkit({
merchantId: process.env.MERCHANT_ID,
apiKeyId: process.env.API_KEY_ID,
secretKey: process.env.SECRET_KEY,
configuration: {
context: {
environment: "SANDBOX",
},
},
});
The Model Context Protocol (MCP) is also supported. You can run a Visa Acceptance MCP server with:
npx -y @visaacceptance/mcp --tools=all --merchant-id=YOUR_MERCHANT_ID --api-key-id=YOUR_API_KEY_ID --secret-key=YOUR_SECRET_KEY
The toolkit currently provides the following Visa Acceptance operations:
Invoices
Payment Links
AI-generated content may be inaccurate or incomplete. Users are fully responsible for verifying any information before relying on it, especially for financial decisions. Visa Acceptance is not liable for any usage, decisions, or damages resulting from AI outputs or this toolkit.
The Agent Toolkit is a SDK provided as a developer tool to facilitate integration of select Visa APIs with large language models (LLMs) or AI services used or accessed by Agent Toolkit licensees. No LLMs or AI services are provided or delivered by Visa through the Agent Toolkit. Licensees of the Agent Toolkit are solely responsible for selecting, procuring, licensing or otherwise obtaining access to, configuring, and maintaining their own LLMs, AI services, and data sources.
This Model Context Protocol (MCP) server is provided in conjunction with the Agent Toolkit SDK to facilitate integration of select Visa APIs with large language models (LLMs) or AI services used or accessed by Agent Toolkit licensees. No LLMs or AI services are provided or delivered by Visa through the MCP server or Agent Toolkit. Licensees of the Agent Toolkit are solely responsible for selecting, procuring, licensing or otherwise obtaining access to, configuring, and maintaining their own LLMs, AI services, and data sources.
MIT
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.