Skip to main content
Glama
alamedaim-apps

Authorize.net MCP Server

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

Related MCP server: nexi-xpay-mcp-server

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

Available Tools

7 tools
get_batch_statisticsC

Get aggregate statistics for a specific batch (totals, counts by card type, etc.).

ParametersJSON Schema
NameRequiredDescriptionDefault
batchIdYesThe batch ID to retrieve statistics for.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden of behavioral disclosure. It states this is a read operation ('Get'), but doesn't describe response format, error conditions, performance characteristics, or whether it requires specific permissions. For a tool with no annotation coverage, this leaves significant gaps in understanding how it behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose. Every element ('Get aggregate statistics', 'for a specific batch', examples) earns its place. It could be slightly more structured with separate usage guidance, but it avoids redundancy and waste.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a single parameter with good schema coverage, the description is incomplete. It doesn't explain what the statistics look like (format, units), whether they're real-time or historical, or error handling. For a statistics tool with no structured output documentation, more context is needed to be fully helpful.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'batchId' fully documented in the schema. The description doesn't add any parameter-specific information beyond what the schema provides (e.g., format examples, valid ranges, or relationship to statistics). The baseline score of 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('aggregate statistics for a specific batch'), with specific examples of what statistics are included ('totals, counts by card type, etc.'). It distinguishes this from siblings that focus on transactions, customers, merchants, or batch lists rather than batch statistics. However, it doesn't explicitly differentiate from hypothetical similar tools like 'get_batch_details' or 'get_batch_summary'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites (e.g., needing a valid batch ID), exclusions (e.g., not for real-time data), or comparisons to sibling tools (e.g., use get_settled_batch_list to find batch IDs first). The context is implied but not stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_customer_profile_transaction_listB

Get all transactions for a specific customer profile ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
customerProfileIdYesThe customer profile ID to retrieve transactions for.

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries full burden for behavioral disclosure. It states it 'Get[s] all transactions' but doesn't clarify what 'all' means (e.g., date range limits, pagination, return format, or whether it includes historical/archived data). For a read operation with zero annotation coverage, this leaves significant gaps in understanding how the tool behaves.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core purpose without unnecessary words. Every part of the sentence contributes directly to understanding what the tool does, making it appropriately sized and well-structured.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (1 parameter, no output schema, no annotations), the description is minimally adequate but incomplete. It lacks behavioral details (e.g., transaction scope, pagination) and differentiation from siblings, which are important for an agent to use it correctly in context with other transaction-related tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with the single parameter 'customerProfileId' fully documented in the schema. The description adds no additional meaning beyond implying the parameter identifies the customer, which the schema already states. This meets the baseline score of 3 when schema coverage is high.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('transactions') with a specific scope ('for a specific customer profile ID'), making the purpose immediately understandable. However, it doesn't differentiate from sibling tools like 'get_transaction_list' or 'get_unsettled_transaction_list', which likely serve similar transaction retrieval functions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With siblings like 'get_transaction_list' and 'get_unsettled_transaction_list' present, there's no indication whether this tool is for settled/unsettled transactions, batch filtering, or other distinctions that would help an agent choose correctly.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_merchant_detailsB

Get merchant account information including name, gateway ID, and processors.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.2/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. While 'Get' implies a read operation, it doesn't specify authentication requirements, rate limits, error conditions, or what happens when merchant data isn't found. For a tool with zero annotation coverage, this leaves significant behavioral gaps.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that communicates the core purpose without unnecessary words. It's appropriately sized for a zero-parameter tool and front-loads the essential information about what merchant data will be retrieved.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter tool with no output schema, the description provides adequate but minimal information. It states what data will be retrieved but doesn't explain the return format, whether all merchant fields are always returned, or how this differs from merchant information that might be embedded in transaction data from sibling tools.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters with 100% schema description coverage, so the baseline is 4. The description appropriately doesn't discuss parameters since none exist, and it focuses on what data will be retrieved rather than how to request it.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and resource ('merchant account information') with specific data fields (name, gateway ID, processors). However, it doesn't differentiate from sibling tools like get_customer_profile_transaction_list or get_transaction_details, which also retrieve merchant-related information.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. With sibling tools like get_transaction_details and get_transaction_list that might retrieve overlapping merchant data, there's no indication of when this specific merchant account information tool is appropriate versus those transaction-focused tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_settled_batch_listB

Get a list of settled batches within a date range. Returns batch IDs, settlement dates, and statistics.

ParametersJSON Schema
NameRequiredDescriptionDefault
firstSettlementDateNoStart date for the batch list (ISO 8601 format, e.g., 2024-01-01). Defaults to 30 days ago.
lastSettlementDateNoEnd date for the batch list (ISO 8601 format). Defaults to today.

TDQS

B3.1/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool returns batch IDs, settlement dates, and statistics, but doesn't cover important aspects like whether this is a read-only operation, pagination behavior, rate limits, authentication requirements, or error handling. The description is minimal and lacks behavioral context beyond basic output.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is extremely concise with just two sentences that efficiently communicate the core functionality. The first sentence states what the tool does, and the second specifies what information is returned. There's zero wasted language, and it's appropriately sized for this simple tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read operation with 2 well-documented parameters and no output schema, the description is minimally adequate. It covers the basic purpose and return values, but given the lack of annotations and output schema, it should ideally provide more behavioral context about the operation's characteristics and limitations.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description mentions 'within a date range' which aligns with the two parameters in the schema. Since schema description coverage is 100% (both parameters have good descriptions with format examples and defaults), the description adds minimal value beyond what the schema already provides. The baseline of 3 is appropriate when the schema does the heavy lifting.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Get') and resource ('list of settled batches'), including what information is returned. It distinguishes from some siblings like 'get_unsettled_transaction_list' by specifying 'settled' batches, but doesn't explicitly differentiate from all siblings like 'get_batch_statistics'.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention when to choose this over 'get_batch_statistics' or 'get_transaction_list', nor does it specify prerequisites or exclusions. The date range context is implied but not framed as usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_transaction_detailsC

Get full details for a specific transaction by its transaction ID.

ParametersJSON Schema
NameRequiredDescriptionDefault
transactionIdYesThe transaction ID to retrieve details for.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states this is a read operation ('Get'), but doesn't cover aspects like authentication needs, rate limits, error handling, or what 'full details' entails (e.g., format, included fields). This leaves significant gaps for a tool that retrieves transaction data.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that front-loads the core action ('Get full details') without unnecessary words. It directly addresses the tool's function, making it easy to parse and understand quickly.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity of transaction data retrieval, no annotations, and no output schema, the description is incomplete. It doesn't explain what 'full details' includes, potential response formats, or behavioral traits like idempotency or error cases. This is inadequate for a tool that likely returns structured financial data.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema description coverage is 100%, with the parameter 'transactionId' fully documented in the schema. The description adds no additional semantic context beyond implying it's for a 'specific transaction', which the schema already covers. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get full details') and resource ('for a specific transaction'), making the purpose understandable. However, it doesn't explicitly distinguish this tool from sibling tools like 'get_transaction_list' or 'get_unsettled_transaction_list', which likely provide different scopes of transaction data.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides no guidance on when to use this tool versus alternatives. It doesn't mention prerequisites, context for selecting this over sibling tools (e.g., 'get_transaction_list' for summaries vs. this for details), or any exclusions. Usage is implied but not explicitly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_transaction_listC

Get all transactions within a specific settled batch.

ParametersJSON Schema
NameRequiredDescriptionDefault
batchIdYesThe batch ID to retrieve transactions for.

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the full burden of behavioral disclosure. It states the tool retrieves transactions but lacks details on permissions, rate limits, pagination, or response format. This is a significant gap for a read operation tool, leaving the agent with incomplete behavioral context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence that directly states the tool's purpose without unnecessary words. It is appropriately sized and front-loaded, with zero wasted information.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of annotations and output schema, the description is incomplete. It fails to address key contextual aspects such as what the return values look like (e.g., list format, fields included), error conditions, or how it differs behaviorally from sibling tools, leaving the agent under-informed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 100% description coverage, with the 'batchId' parameter clearly documented. The description adds no additional semantic context beyond implying the batch must be 'settled', which is already suggested by the tool name. This meets the baseline for high schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the action ('Get') and resource ('transactions within a specific settled batch'), making the purpose understandable. However, it doesn't explicitly differentiate from sibling tools like 'get_settled_batch_list' (which lists batches) or 'get_transaction_details' (which retrieves details for individual transactions), missing full sibling distinction.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides minimal guidance by specifying 'within a specific settled batch', implying usage when a batch ID is known. However, it offers no explicit advice on when to use this tool versus alternatives like 'get_unsettled_transaction_list' or 'get_customer_profile_transaction_list', nor any prerequisites or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_unsettled_transaction_listB

Get all transactions that are pending settlement (not yet batched).

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries full burden for behavioral disclosure. It states the tool retrieves data ('Get'), implying a read-only operation, but lacks details on permissions, rate limits, pagination, or response format. This is a significant gap for a tool with zero annotation coverage.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, efficient sentence with zero waste. It is front-loaded with the core purpose and includes clarifying parenthetical context ('not yet batched'). Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no annotations, no output schema, and a read-focused tool, the description is incomplete. It lacks behavioral context (e.g., response format, error handling) and doesn't clarify scope (e.g., date ranges, limits). For a tool with zero structured data, more guidance is needed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The input schema has 0 parameters with 100% coverage, so no parameter documentation is needed. The description appropriately adds no parameter information, focusing on the tool's purpose instead. Baseline is 4 for zero parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb ('Get') and resource ('transactions that are pending settlement'), specifying the exact subset of transactions. It distinguishes from siblings like 'get_settled_batch_list' by focusing on unsettled transactions, though it doesn't explicitly name alternatives.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage when needing pending/unsettled transactions, but provides no explicit guidance on when to use this tool versus alternatives like 'get_transaction_list' or 'get_settled_batch_list'. No exclusions or prerequisites are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 7 tool updates
    • First observedget_batch_statistics
    • First observedget_customer_profile_transaction_list
    • First observedget_merchant_details
    • First observedget_settled_batch_list
    • First observedget_transaction_details
    • First observedget_transaction_list
    • First observedget_unsettled_transaction_list

TDQS

A3.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose targeting specific resources: batch statistics, customer profile transactions, merchant details, settled batch lists, transaction details, batch-specific transaction lists, and unsettled transactions. No overlap exists, and the descriptions clearly differentiate the scope and target of each tool.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern with 'get_' as the prefix, followed by descriptive nouns (e.g., get_batch_statistics, get_customer_profile_transaction_list). The naming is uniform, predictable, and enhances readability across the toolset.

Tool Count5/5

With 7 tools, the server is well-scoped for payment processing and reporting tasks. Each tool serves a specific, necessary function in the Authorize.net domain, avoiding bloat while covering key operations like batch management, transaction retrieval, and merchant information.

Completeness4/5

The toolset provides comprehensive read-only coverage for transaction and batch reporting, including settled and unsettled data, customer profiles, and merchant details. A minor gap exists in write operations (e.g., creating or updating transactions), but the surface is complete for querying and analysis workflows.

Maintenance

ActivityInactive
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    B
    maintenance
    Enables AI assistants to interact with PayBridgeNP payment gateway accounts through natural language. Provides read-only access to payments, refunds, analytics, and account data, with write capabilities planned for future versions.
    215
    1
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to query orders, transaction details, warnings/anomalies, and payment methods from your Nexi XPay merchant account.
    4
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    Provides read-only access to Monarch Money financial data, enabling AI assistants to analyze transactions, budgets, and cashflow.
    4
    MIT
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables AI agents to retrieve and analyze Dwolla payment platform data using natural language, with read-only access to accounts, transfers, customers, and compliance information.
    32
    2
    -

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/alamedaim-apps/authnet-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server