

<!DOCTYPE html>

<html lang="en-US">
<head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=Edge">

  <link rel="stylesheet" href="/easypaydirect-mcp/assets/css/just-the-docs-default.css">

  <link rel="stylesheet" href="/easypaydirect-mcp/assets/css/just-the-docs-head-nav.css" id="jtd-head-nav-stylesheet">

  <style id="jtd-nav-activation">
  
    .site-nav ul li a {
      background-image: none;
    }

  </style>

  

  
    <script src="/easypaydirect-mcp/assets/js/vendor/lunr.min.js"></script>
  

  <script src="/easypaydirect-mcp/assets/js/just-the-docs.js"></script>

  <meta name="viewport" content="width=device-width, initial-scale=1">

  

  <link rel="icon" href="/easypaydirect-mcp/assets/images/favicon.svg" type="image/x-icon">



  <!-- Begin Jekyll SEO tag v2.8.0 -->
<title>easypaydirect-mcp | Read-only Model Context Protocol (MCP) server for the Easy Pay Direct (EPD) / NMI-family payment gateway Query API.</title>
<meta name="generator" content="Jekyll v3.10.0" />
<meta property="og:title" content="easypaydirect-mcp" />
<meta property="og:locale" content="en_US" />
<meta name="description" content="Read-only Model Context Protocol (MCP) server for the Easy Pay Direct (EPD) / NMI-family payment gateway Query API." />
<meta property="og:description" content="Read-only Model Context Protocol (MCP) server for the Easy Pay Direct (EPD) / NMI-family payment gateway Query API." />
<link rel="canonical" href="https://praveendias1180.github.io/easypaydirect-mcp/assets/css/just-the-docs-head-nav.css" />
<meta property="og:url" content="https://praveendias1180.github.io/easypaydirect-mcp/assets/css/just-the-docs-head-nav.css" />
<meta property="og:site_name" content="easypaydirect-mcp" />
<meta property="og:type" content="website" />
<meta name="twitter:card" content="summary" />
<meta property="twitter:title" content="easypaydirect-mcp" />
<script type="application/ld+json">
{"@context":"https://schema.org","@type":"WebPage","description":"Read-only Model Context Protocol (MCP) server for the Easy Pay Direct (EPD) / NMI-family payment gateway Query API.","headline":"easypaydirect-mcp","publisher":{"@type":"Organization","logo":{"@type":"ImageObject","url":"https://praveendias1180.github.io/easypaydirect-mcp/assets/images/logo.svg?v=2"}},"url":"https://praveendias1180.github.io/easypaydirect-mcp/assets/css/just-the-docs-head-nav.css"}</script>
<!-- End Jekyll SEO tag -->


  <link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=JetBrains+Mono:wght@400;500&display=swap" rel="stylesheet">
<link rel="icon" href="/easypaydirect-mcp/assets/images/favicon.svg" type="image/svg+xml">
<meta name="theme-color" content="#5145e0">

<script>
  // Light / dark theme — defaults to the OS setting; a toggle in the top nav
  // lets visitors override it (persisted in localStorage). Swaps the main
  // stylesheet between just-the-docs-default.css (light) and
  // just-the-docs-gravity-dark.css (dark).
  (function () {
    var KEY = 'epd-color-mode';
    var mq = window.matchMedia ? window.matchMedia('(prefers-color-scheme: dark)') : null;

    // Monochrome icons that inherit the button's color via currentColor.
    var SUN = '<svg class="cm-ico" viewBox="0 0 24 24" width="18" height="18" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" aria-hidden="true"><circle cx="12" cy="12" r="4.2"/><path d="M12 2.5v2.2M12 19.3v2.2M4.4 4.4l1.6 1.6M18 18l1.6 1.6M2.5 12h2.2M19.3 12h2.2M4.4 19.6l1.6-1.6M18 6l1.6-1.6"/></svg>';
    var MOON = '<svg class="cm-ico" viewBox="0 0 24 24" width="18" height="18" fill="currentColor" aria-hidden="true"><path d="M20.5 14.8A8.2 8.2 0 019.2 3.5 7.3 7.3 0 1020.5 14.8z"/></svg>';

    function saved() { try { return localStorage.getItem(KEY); } catch (e) { return null; } }
    function resolve() {
      var s = saved();
      if (s === 'light' || s === 'dark') return s;
      return mq && mq.matches ? 'dark' : 'light';
    }
    function mainLink() {
      var links = document.querySelectorAll('link[rel="stylesheet"]');
      for (var i = 0; i < links.length; i++) {
        if (links[i].id === 'jtd-head-nav-stylesheet') continue;
        if (/just-the-docs-(default|gravity-dark)\.css/.test(links[i].getAttribute('href') || '')) return links[i];
      }
      return null;
    }
    function apply(mode) {
      var l = mainLink();
      if (l) {
        var file = mode === 'dark' ? 'just-the-docs-gravity-dark.css' : 'just-the-docs-default.css';
        l.setAttribute('href', (l.getAttribute('href') || '').replace(/just-the-docs-(default|gravity-dark)\.css/, file));
      }
      document.documentElement.setAttribute('data-color-mode', mode);
    }
    function current() { return document.documentElement.getAttribute('data-color-mode') || 'light'; }
    // Show the icon for the mode you'd switch TO: sun while dark, moon while light.
    function icon(mode) { return mode === 'dark' ? SUN : MOON; }

    // Apply before the body paints to avoid a flash.
    apply(resolve());

    function addToggle() {
      var btn = document.createElement('button');
      btn.type = 'button';
      btn.className = 'color-mode-toggle';
      btn.setAttribute('aria-label', 'Toggle light / dark theme');
      btn.title = 'Toggle light / dark theme';
      btn.innerHTML = icon(current());
      btn.addEventListener('click', function () {
        var next = current() === 'dark' ? 'light' : 'dark';
        try { localStorage.setItem(KEY, next); } catch (e) {}
        apply(next);
        btn.innerHTML = icon(next);
      });
      var aux = document.querySelector('.aux-nav-list');
      if (aux) {
        var li = document.createElement('li');
        li.className = 'aux-nav-list-item';
        li.appendChild(btn);
        aux.appendChild(li);
      } else {
        btn.classList.add('color-mode-toggle--floating');
        document.body.appendChild(btn);
      }
    }
    if (document.readyState === 'loading') {
      document.addEventListener('DOMContentLoaded', addToggle);
    } else {
      addToggle();
    }

    // Follow OS changes unless the visitor picked a preference explicitly.
    if (mq) {
      var handler = function (e) {
        if (saved() === 'light' || saved() === 'dark') return;
        var m = e.matches ? 'dark' : 'light';
        apply(m);
        var b = document.querySelector('.color-mode-toggle');
        if (b) b.innerHTML = icon(m);
      };
      if (mq.addEventListener) mq.addEventListener('change', handler);
      else if (mq.addListener) mq.addListener(handler);
    }
  })();
</script>


</head>

<body>
  <a class="skip-to-main" href="#main-content">Skip to main content</a>
  <svg xmlns="http://www.w3.org/2000/svg" class="d-none">
  <symbol id="svg-link" viewBox="0 0 24 24">
  <title>Link</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-link">
    <path d="M10 13a5 5 0 0 0 7.54.54l3-3a5 5 0 0 0-7.07-7.07l-1.72 1.71"></path><path d="M14 11a5 5 0 0 0-7.54-.54l-3 3a5 5 0 0 0 7.07 7.07l1.71-1.71"></path>
  </svg>
</symbol>

  <symbol id="svg-menu" viewBox="0 0 24 24">
  <title>Menu</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-menu">
    <line x1="3" y1="12" x2="21" y2="12"></line><line x1="3" y1="6" x2="21" y2="6"></line><line x1="3" y1="18" x2="21" y2="18"></line>
  </svg>
</symbol>

  <symbol id="svg-arrow-right" viewBox="0 0 24 24">
  <title>Expand</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-chevron-right">
    <polyline points="9 18 15 12 9 6"></polyline>
  </svg>
</symbol>

  <!-- Feather. MIT License: https://github.com/feathericons/feather/blob/master/LICENSE -->
<symbol id="svg-external-link" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-external-link">
  <title id="svg-external-link-title">(external link)</title>
  <path d="M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6"></path><polyline points="15 3 21 3 21 9"></polyline><line x1="10" y1="14" x2="21" y2="3"></line>
</symbol>

  
    <symbol id="svg-doc" viewBox="0 0 24 24">
  <title>Document</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-file">
    <path d="M13 2H6a2 2 0 0 0-2 2v16a2 2 0 0 0 2 2h12a2 2 0 0 0 2-2V9z"></path><polyline points="13 2 13 9 20 9"></polyline>
  </svg>
</symbol>

    <symbol id="svg-search" viewBox="0 0 24 24">
  <title>Search</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none" stroke="currentColor" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-search">
    <circle cx="11" cy="11" r="8"></circle><line x1="21" y1="21" x2="16.65" y2="16.65"></line>
  </svg>
</symbol>

  
  
    <!-- Bootstrap Icons. MIT License: https://github.com/twbs/icons/blob/main/LICENSE.md -->
<symbol id="svg-copy" viewBox="0 0 16 16">
  <title>Copy</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard" viewBox="0 0 16 16">
    <path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1h1a1 1 0 0 1 1 1V14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V3.5a1 1 0 0 1 1-1h1v-1z"/>
    <path d="M9.5 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3zm-3-1A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3z"/>
  </svg>
</symbol>
<symbol id="svg-copied" viewBox="0 0 16 16">
  <title>Copied</title>
  <svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-clipboard-check-fill" viewBox="0 0 16 16">
    <path d="M6.5 0A1.5 1.5 0 0 0 5 1.5v1A1.5 1.5 0 0 0 6.5 4h3A1.5 1.5 0 0 0 11 2.5v-1A1.5 1.5 0 0 0 9.5 0h-3Zm3 1a.5.5 0 0 1 .5.5v1a.5.5 0 0 1-.5.5h-3a.5.5 0 0 1-.5-.5v-1a.5.5 0 0 1 .5-.5h3Z"/>
    <path d="M4 1.5H3a2 2 0 0 0-2 2V14a2 2 0 0 0 2 2h10a2 2 0 0 0 2-2V3.5a2 2 0 0 0-2-2h-1v1A2.5 2.5 0 0 1 9.5 5h-3A2.5 2.5 0 0 1 4 2.5v-1Zm6.854 7.354-3 3a.5.5 0 0 1-.708 0l-1.5-1.5a.5.5 0 0 1 .708-.708L7.5 10.793l2.646-2.647a.5.5 0 0 1 .708.708Z"/>
  </svg>
</symbol>

  
</svg>

  
    <header class="side-bar">
  <div class="site-header">
    <a href="/easypaydirect-mcp/" class="site-title lh-tight">
  <div class="site-logo" role="img" aria-label="easypaydirect-mcp"></div>

</a>
    <button id="menu-button" class="site-button btn-reset" aria-label="Menu" aria-expanded="false">
      <svg viewBox="0 0 24 24" class="icon" aria-hidden="true"><use xlink:href="#svg-menu"></use></svg>
    </button>
  </div>

  <nav aria-label="Main" id="site-nav" class="site-nav">
  
  
    <ul class="nav-list"><li class="nav-list-item"><a href="/easypaydirect-mcp/" class="nav-list-link">Home</a></li><li class="nav-list-item"><a href="/easypaydirect-mcp/getting-started.html" class="nav-list-link">Getting started</a></li><li class="nav-list-item"><a href="/easypaydirect-mcp/configuration.html" class="nav-list-link">Configuration</a></li><li class="nav-list-item"><a href="/easypaydirect-mcp/tools.html" class="nav-list-link">Tools reference</a></li><li class="nav-list-item"><a href="/easypaydirect-mcp/security.html" class="nav-list-link">Security</a></li><li class="nav-list-item"><a href="/easypaydirect-mcp/nmi-api-mapping.html" class="nav-list-link">Architecture & API mapping</a></li></ul>
  
</nav>


<div class="d-md-block d-none site-footer">
  
  
    This site uses <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.
  
  </div>
</header>

  
  <div class="main" id="top">
    <div id="main-header" class="main-header">
  
    

<div class="search" role="search">
  <div class="search-input-wrap">
    <input type="text" id="search-input" class="search-input" tabindex="0" placeholder="Search easypaydirect-mcp" autocomplete="off">
    <label for="search-input" class="search-label">
      <span class="sr-only">Search easypaydirect-mcp</span>
      <svg viewBox="0 0 24 24" class="search-icon" aria-hidden="true"><use xlink:href="#svg-search"></use></svg>
    </label>
  </div>
  <div id="search-results" class="search-results"></div>
</div>

  
  
  
    <nav aria-label="Auxiliary" class="aux-nav">
  <ul class="aux-nav-list">
    
      <li class="aux-nav-list-item">
        <a href="https://github.com/praveendias1180/easypaydirect-mcp" class="site-button"
          
          target="_blank" rel="noopener noreferrer"
          
        >
          GitHub ↗
        </a>
      </li>
    
      <li class="aux-nav-list-item">
        <a href="https://www.npmjs.com/package/easypaydirect-mcp" class="site-button"
          
          target="_blank" rel="noopener noreferrer"
          
        >
          npm ↗
        </a>
      </li>
    
  </ul>
</nav>

  
</div>

    <div class="main-content-wrap">
      
      <div id="main-content" class="main-content">
        <main>
          
            

          

          
            
          
        </main>
        
<hr>
<footer>
  

  <p class="text-small mb-0">MIT-licensed · Unofficial — not affiliated with Easy Pay Direct or NMI.</p>

  <div class="d-md-none mt-4 fs-2">
    
    
      This site uses <a href="https://github.com/just-the-docs/just-the-docs">Just the Docs</a>, a documentation theme for Jekyll.
    
  </div>
</footer>

      </div>
    </div>
    
      
<button id="search-button" class="search-button btn-reset" aria-label="Focus on search">
  <svg viewBox="0 0 24 24" class="icon" aria-hidden="true"><use xlink:href="#svg-search"></use></svg>
</button>


<div class="search-overlay"></div>

    
  </div>

  
</body>
</html>

