Skip to main content
Glama
msuresh007

nacha-mcp

by msuresh007

nacha-mcp

An MCP (Model Context Protocol) server for parsing and validating NACHA/ACH files.

Listed on mcpservers.org

Requirements

  • Node.js 18 or later

  • npm

Related MCP server: acmt001-mcp

Setup

git clone https://github.com/msuresh007/nacha-mcp.git
cd nacha-mcp
npm install
npm run build

This compiles src/ to dist/. Re-run npm run build after pulling any updates.

Try it out

A small, arithmetically-valid sample file is included at examples/sample.ach. Once built, you can run either tool directly from the command line without an MCP client, to confirm everything works:

node -e "const {analyzeNachaFile}=require('./dist/analyze.js');const fs=require('fs');console.log(JSON.stringify(analyzeNachaFile(fs.readFileSync('examples/sample.ach','utf-8')),null,2))"

You should see "valid": true with an empty issues array, one batch, and one entry.

Tools

  • parse_nacha_file — Parses a NACHA file at a given path into full structured JSON: file header, batches (header, entries with addenda, control), and file control.

  • summarize_nacha_file — Parses a NACHA file and returns a condensed summary: batch count, total entries, total debit/credit amounts, SEC codes present, and validation issues.

Both tools take a single input, file_path, an absolute path to the file on disk.

Parsing includes:

  • Structural validation (record length, record type ordering, batch header/control pairing).

  • Arithmetic validation — entry hash, debit/credit totals, and entry/addenda counts are recomputed from the actual entries and cross-checked against the declared Batch Control and File Control values. Mismatches are reported as validation issues rather than silently accepted.

  • IAT (International ACH Transaction) batches and addenda type codes 10-18.

Running standalone

npm start

The server communicates over stdio using the MCP protocol; it's not meant to be run interactively on its own. Use it through an MCP client as described below.

Connect to Claude Code

From the project directory, after building:

claude mcp add nacha -- node "$(pwd)/dist/index.js"

(On Windows PowerShell: claude mcp add nacha -- node "$PWD\dist\index.js")

Connect to GitHub Copilot (VS Code)

Create .vscode/mcp.json in the project you want to use it from (or add to it if it already exists), replacing the path with the absolute path to your clone of this repo:

{
  "servers": {
    "nacha": {
      "type": "stdio",
      "command": "node",
      "args": ["/absolute/path/to/nacha-mcp/dist/index.js"]
    }
  }
}

Alternatively, run MCP: Add Server from the Command Palette (Ctrl+Shift+P / ⇧⌘P), choose Workspace, and point it at node with the same args — VS Code writes the same .vscode/mcp.json for you.

Once saved, open Copilot Chat, switch to Agent mode, and the parse_nacha_file / summarize_nacha_file tools will be available (VS Code starts the server on demand).

Connect to Claude Desktop or another MCP client

Add an entry to the client's MCP server config (e.g. claude_desktop_config.json), replacing the path with the absolute path to your clone of this repo:

{
  "mcpServers": {
    "nacha": {
      "command": "node",
      "args": ["/absolute/path/to/nacha-mcp/dist/index.js"]
    }
  }
}

Restart the client after adding the config.

Project layout

  • src/constants.ts — SEC codes, transaction codes, ISO country/currency lookups.

  • src/format.ts — money/date/time field parsing.

  • src/parser.ts — structural validation and record parsing (file/batch/entry/addenda).

  • src/validate.ts — arithmetic validation (hashes, totals, counts).

  • src/analyze.ts — combines parsing and arithmetic validation.

  • src/summarize.ts — condensed summary view.

  • src/index.ts — MCP server and tool registration.

No unit tests are included by design — this is meant to stay a small, easily auditable server.

License

MIT — see LICENSE.

Available Tools

2 tools
parse_nacha_fileParse NACHA/ACH fileA

Parses a NACHA (ACH) fixed-width file into structured JSON: file header, batches (header, entries with addenda, control), and file control. Validates record structure and cross-checks entry hashes, debit/credit totals, and record counts, reporting any mismatches as issues.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_pathYesAbsolute path to the NACHA/ACH file on disk.

TDQS

A4.1/5.0
Behavior4/5

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

No annotations are provided, so the description carries the burden. It discloses validation behavior well: cross-checking record counts, hashes, and debit/credit totals, and reporting mismatches as 'issues'. It could add a bit more about error behavior for unreadable or malformed files, but the existing detail is substantial.

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?

Two tight sentences, each carrying essential information: the first defines the output structure, the second the validation behavior. It is front-loaded with the core action and resource. No filler or repetition.

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

Completeness5/5

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

Given one parameter, no annotations, and no output schema, the description is remarkably complete: it lists the CSV JSON composition, the validation checks, and the reporting of issues. An agent can confidently call the tool knowing what input to provide and what to do with the result.

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?

There is only one parameter and its schema description is 100% complete ('Absolute path to the NACHA/ACH file on disk'). The tool description does not add anything about the parameter beyond the schema, but with full schema coverage the baseline of 3 is appropriate.

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

Purpose5/5

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

States a specific verb ('Parses') and resource ('NACHA/ACH fixed-width file') and names the output structure explicitly (file header, batches, control). It also distinguishes itself from sibling summarize_nacha_file by emphasizing structured JSON extraction plus validation rather than summarization.

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 conveys the natural use case—get structured JSON from a NACHA file—but it does not explicitly contrast with summarize_nacha_file or state when the agent should choose parsing over summarizing. Usage context is implied clearly by the verb and output, but there is no explicit when/when-not guidance.

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

summarize_nacha_fileSummarize NACHA/ACH fileA

Parses a NACHA (ACH) file and returns a condensed summary: batch count, total entries, total debit/credit amounts, SEC codes present, and validation issues, without dumping every field of every record.

ParametersJSON Schema
NameRequiredDescriptionDefault
file_pathYesAbsolute path to the NACHA/ACH file on disk.

TDQS

A4.2/5.0
Behavior3/5

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

With no annotations provided, the description carries the full safety burden. It clearly states it parses and returns a summary, implying a read-only operation, and notes that it reports validation issues. However, it does not explicitly state side-effect-free behavior or potential error conditions on malformed files.

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?

A single, tightly packed sentence that front-loads the verb and resource, then enumerates specific output elements. No wasted words, and the critical exclusion is stated compactly.

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

Completeness4/5

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

For a simple one-parameter tool with no output schema, the description adequately specifies its return content with field-level detail. It falls just short of being fully complete by not describing the result structure or behavior on invalid files, though those gaps are minor.

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 coverage is 100% and the single file_path parameter is well-documented in the schema. The description does not add meaning beyond the schema, which is fine at the baseline of 3.

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

Purpose5/5

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

The description states a specific action ('Parses... and returns') and explicitly lists the summary contents: batch count, total entries, total debit/credit amounts, SEC codes, and validation issues. The phrase 'without dumping every field of every record' clearly differentiates it from the sibling parse_nacha_file.

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

Usage Guidelines5/5

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

The description explicitly frames when to use this tool: when a condensed summary is desired rather than full record-level detail. The contrast 'without dumping every field' effectively communicates the when-not and implicitly routes to the sibling for detailed extraction.

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.

  1. 2 tool updatesv0.1.0
    • First observedparse_nacha_file
    • First observedsummarize_nacha_file

TDQS

A4.2/5.0

Scored across 2 tools

Disambiguation4/5

The two tools have clearly different outputs—one returns the full parsed structure and one returns a condensed summary—so an agent can pick based on response size. There is mild overlap because both parse the file, but the naming and descriptions sufficiently differentiate their purposes.

Naming Consistency5/5

Both tool names follow the same verb_noun_file pattern: parse_nacha_file and summarize_nacha_file. The naming is predictable, consistent, and accurately reflects the intent of each tool.

Tool Count4/5

With only two tools, the server is intentionally narrow, but both tools serve a clear and distinct purpose for NACHA file handling. The count is slightly thin but not inappropriate given the focused read-only scope.

Completeness4/5

For a server focused on reading and validating NACHA files, the surface covers the essential workflows: full detailed parsing and condensed summarization. It could benefit from additional capabilities like file creation or export, but those seem outside its apparent scope.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    The fileAI MCP Server offers a robust set of tools to work with the fileAI file processing pipeline. It allows for uploading files, performing Optical Character Recognition (OCR), classifying documents, and extracting structured data. The server leverages the Model Context Protocol (MCP) to provide
    2
    -
  • F
    license
    A
    quality
    A
    maintenance
    MCP server for ISO 20022 acmt.001 Account Opening (and companion acmt.* messages): message-type discovery, required-field lookup, JSON Schema introspection, IBAN/BIC/LEI validation, flat-record validation, and validated acmt XML generation.
    6
    1
    -
  • A
    license
    A
    quality
    C
    maintenance
    Let AI agents read, validate and acknowledge EDI documents. Parses raw X12 and EDIFACT interchanges into structured JSON, validates envelope integrity, produces plain-language summaries, and generates 997 Functional Acknowledgments.
    4
    MIT