Authorize.net MCP Server
Provides read-only access to Authorize.net transaction reporting APIs, enabling users to query settled batches, transaction details, customer payment history, and settlement statistics directly from AI assistants.
README
authnet-mcp
MCP server for Authorize.net transaction reporting and settlement data.
Overview
What is authnet-mcp?
authnet-mcp is a Model Context Protocol (MCP) server that provides read-only access to Authorize.net transaction reporting APIs. Query settled batches, transaction details, and settlement statistics directly from AI assistants.
How to use authnet-mcp?
Install via npx, set your Authorize.net API credentials as environment variables, and connect from any MCP-compatible client (Claude Code, Cline, etc.).
Key features:
- View settled and pending batches
- Query transaction details by batch or transaction ID
- Get customer transaction history
- Retrieve batch statistics and merchant details
- Read-only - no payment processing, no risk of accidental charges
- Secure - all API calls over HTTPS, credentials never exposed
Use cases:
- Quick transaction lookups from your terminal
- Daily settlement reconciliation
- Customer payment history queries
- Batch reporting and statistics
Requirements
- Node.js 18+
Installation
npx authnet-mcp
Or install globally:
npm install -g authnet-mcp
Configuration
Set these environment variables:
| Variable | Required | Description |
|---|---|---|
AUTHNET_API_LOGIN_ID |
Yes | Your Authorize.net API Login ID |
AUTHNET_TRANSACTION_KEY |
Yes | Your Authorize.net Transaction Key |
AUTHNET_ENVIRONMENT |
No | sandbox (default) or production |
Claude Code Setup
Add to your .mcp.json:
{
"mcpServers": {
"authnet": {
"command": "npx",
"args": ["authnet-mcp"],
"env": {
"AUTHNET_API_LOGIN_ID": "your-login-id",
"AUTHNET_TRANSACTION_KEY": "your-transaction-key",
"AUTHNET_ENVIRONMENT": "production"
}
}
}
}
Available Tools
| Tool | Description |
|---|---|
get_settled_batch_list |
List settled batches within a date range |
get_transaction_list |
Get all transactions in a batch |
get_unsettled_transaction_list |
Get pending transactions |
get_transaction_details |
Full details for a specific transaction |
get_customer_profile_transaction_list |
All transactions for a customer profile |
get_batch_statistics |
Aggregate stats for a batch |
get_merchant_details |
Merchant account information |
Example Queries
Once connected, ask your AI assistant:
- "Show me recent settled batches"
- "Get transactions for batch 1042572961"
- "What's pending settlement?"
- "Pull details on transaction 121364862857"
Security
- HTTPS only - The Authorize.net SDK enforces TLS for all API calls
- Read-only - No payment processing capabilities, only reporting
- Masked data - Card numbers are returned masked (e.g., XXXX1234)
- Local credentials - API keys stay in your environment, never transmitted via MCP
FAQ
Is sandbox mode available?
Yes, set AUTHNET_ENVIRONMENT=sandbox (this is the default).
Can this process payments? No. This MCP is read-only for reporting. Use the official Authorize.net SDK for payment processing.
What Node.js version is required? Node.js 18 or higher.
License
MIT
Recommended Servers
playwright-mcp
A Model Context Protocol server that enables LLMs to interact with web pages through structured accessibility snapshots without requiring vision models or screenshots.
Magic Component Platform (MCP)
An AI-powered tool that generates modern UI components from natural language descriptions, integrating with popular IDEs to streamline UI development workflow.
Audiense Insights MCP Server
Enables interaction with Audiense Insights accounts via the Model Context Protocol, facilitating the extraction and analysis of marketing insights and audience data including demographics, behavior, and influencer engagement.
VeyraX MCP
Single MCP tool to connect all your favorite tools: Gmail, Calendar and 40 more.
graphlit-mcp-server
The Model Context Protocol (MCP) Server enables integration between MCP clients and the Graphlit service. Ingest anything from Slack to Gmail to podcast feeds, in addition to web crawling, into a Graphlit project - and then retrieve relevant contents from the MCP client.
Kagi MCP Server
An MCP server that integrates Kagi search capabilities with Claude AI, enabling Claude to perform real-time web searches when answering questions that require up-to-date information.
E2B
Using MCP to run code via e2b.
Neon Database
MCP server for interacting with Neon Management API and databases
Exa Search
A Model Context Protocol (MCP) server lets AI assistants like Claude use the Exa AI Search API for web searches. This setup allows AI models to get real-time web information in a safe and controlled way.
Qdrant Server
This repository is an example of how to create a MCP server for Qdrant, a vector search engine.