Skip to main content
Glama
praveendias1180

easypaydirect-mcp

easypaydirect-mcp

npm CI docs good first issues license: MIT

📖 Documentation: https://praveendias1180.github.io/easypaydirect-mcp/

Unofficial, read-only Model Context Protocol server for the Easy Pay Direct (EPD) / NMI-family payment gateway.

Give an AI assistant (Claude Desktop, Claude Code, or any MCP client) safe, read-only access to your gateway's transactions, subscriptions, recurring plans, and Customer Vault records — so you can ask questions like "find the failed transactions for this customer last week" or "is this subscription still active?" in plain language.

Easy Pay Direct is built on the NMI / Network Merchants gateway platform, so this server works with any NMI white-label gateway — just point it at your gateway's host. EPD is the headline example, not the limit.

⚠️ Not affiliated with, endorsed by, or sponsored by Easy Pay Direct or NMI. "Easy Pay Direct", "EPD", and "NMI" are trademarks of their respective owners. This is an independent open-source client for their public Query API.


Why read-only?

This server talks only to the gateway's Query API (/api/query.php) — the reporting endpoint. It has no code path to the transaction endpoint (transact.php), so it cannot charge a card, issue a refund, void a transaction, or modify the vault. An LLM connected to this server can look, but it cannot touch money. See docs/security.md.

Write operations may arrive in a future major version — always opt-in, off by default, and loudly gated.


Related MCP server: MSSQL-MCP

Install & run

Requires Node.js 18+.

# no install needed — run straight from npm
npx easypaydirect-mcp

The server speaks MCP over stdio and expects two environment variables:

Variable

Required

Description

NMI_SECURITY_KEY

Your gateway API security key (a read-only key is recommended). Merchant portal → Settings → Security Keys.

NMI_API_URL

Gateway API base URL. Defaults to https://secure.nmi.com. For EPD/white-labels, set this to your gateway's host.

See docs/configuration.md for how to find your key and host.

Connect it to Claude

Claude Desktop — add to claude_desktop_config.json (see examples/claude-desktop-config.json):

{
  "mcpServers": {
    "easypaydirect": {
      "command": "npx",
      "args": ["-y", "easypaydirect-mcp"],
      "env": {
        "NMI_SECURITY_KEY": "your_read_only_security_key",
        "NMI_API_URL": "https://secure.nmi.com"
      }
    }
  }
}

Claude Code:

claude mcp add easypaydirect \
  -e NMI_SECURITY_KEY=your_read_only_security_key \
  -e NMI_API_URL=https://secure.nmi.com \
  -- npx -y easypaydirect-mcp

Full walkthrough: docs/getting-started.md.

Tools

All tools are read-only. Full reference in docs/tools.md.

Tool

What it does

get_transaction

Fetch one transaction by gateway transaction ID.

search_transactions

Search transactions by date range + filters (condition, action type, payment type, source, email, order id).

get_subscription

Fetch one recurring subscription by ID.

list_subscriptions

List recurring subscriptions, optionally by created/updated date range.

list_recurring_plans

List recurring billing plans (or one by plan_id).

get_customer_vault_record

Fetch one stored Customer Vault record by ID.

list_customer_vault

List stored Customer Vault records, optionally by date range.

Develop

git clone https://github.com/praveendias1180/easypaydirect-mcp.git
cd easypaydirect-mcp
npm install
npm run build      # compile TypeScript to dist/
npm run typecheck  # type-check only

Local run against the MCP Inspector:

npx @modelcontextprotocol/inspector node dist/index.js

Architecture and how tools map to the Query API: docs/nmi-api-mapping.md.

Roadmap

Planned / under consideration — contributions welcome (see open issues):

  • Tests — unit suite with recorded Query API fixtures (#1)

  • Friendlier dates — accept ISO-8601 in date filters (#2)

  • More filters — merchant-defined fields on search_transactions (#3)

  • Better errors — map NMI response codes to actionable messages (#4)

  • Distribution — a Docker image (#7) and publish-on-release automation (#8)

  • Docs — response-field reference (#9)

Read-only stays the default posture — any write support would be a separate, opt-in, gated major version.

See the changelog for released changes.

Contributing

Contributions are welcome — this aims to be a small, dependable, read-only MCP server. See CONTRIBUTING.md for the ground rules and dev setup.

New here? Start with a good first issue — each one has context, a task checklist, file pointers, and acceptance criteria. Have a question? Open a Discussion.

License

MIT © the easypaydirect-mcp contributors.

Available Tools

7 tools
get_customer_vault_recordA

Fetch a single stored Customer Vault record by its customer_vault_id (report_type=customer_vault). Returns stored profile data only — never full card numbers. Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
customer_vault_idYesThe Customer Vault ID to look up.

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations provided, the description carries the full burden. It explicitly discloses 'Read-only' and adds a critical safety detail: 'Returns stored profile data only — never full card numbers.' This goes beyond a mere fetch statement, though it does not mention error behavior or auth requirements, which are minor for a read operation.

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 sentences, front-loaded with the core action, followed by useful privacy and safety context ('never full card numbers') and a clear 'Read-only' declaration. Every word earns its place; no filler or redundancy.

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 read-only tool without an output schema, the description explains the tool's scope (single record), the expected input (customer_vault_id), and key behavioral constraints (read-only, no full card numbers). It is sufficient for an agent to invoke correctly, though it omits potential edge cases like 'not found' responses, which are not essential for basic usage.

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%: the parameter 'customer_vault_id' is fully described as 'The Customer Vault ID to look up.' The description repeats the parameter name but adds no extra semantic detail (e.g., format, length constraints beyond minLength). Baseline 3 is appropriate because the schema already handles parameter meaning.

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 clearly states the action ('Fetch a single stored Customer Vault record'), the resource ('Customer Vault record'), and the key identifier ('customer_vault_id'). It also disambiguates from sibling tools like list_customer_vault by specifying 'single', and from get_transaction/get_subscription by naming the vault-specific report_type.

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

Usage Guidelines4/5

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

The phrase 'by its customer_vault_id' makes clear this tool is for looking up a specific vault record when the ID is known, providing implied usage context. It does not explicitly name alternatives or exclusions, but the presence of sibling list tools suggests the contrast is unnecessary for this simple read-only fetch.

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

get_subscriptionA

Fetch a single recurring subscription by its subscription ID (report_type=recurring). Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
subscription_idYesThe recurring subscription ID to look up.

TDQS

A4.2/5.0
Behavior4/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 explicitly states 'Read-only', which is a key safety trait. It does not cover errors or authentication, but for a simple fetch operation this is sufficient.

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, front-loaded sentence that delivers the essential information: what it does, how, and the read-only nature. No wasted words.

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 single-fetch tool with one well-documented parameter and no output schema, the description covers the purpose, input, and safety. It could be slightly more explicit about the output, but 'Fetch a single recurring subscription' implies the return value, making it sufficiently complete.

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 covers 100% of the parameter, and the parameter description already explains 'The recurring subscription ID to look up'. The tool description merely repeats this with 'by its subscription ID', adding no new semantic value beyond what the schema provides.

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 clearly states the tool 'Fetch a single recurring subscription by its subscription ID', using a specific verb and resource. It distinguishes itself from sibling tools like get_transaction and list_subscriptions by targeting a single recurring subscription.

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

Usage Guidelines4/5

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

The description provides clear context for when to use the tool: when a specific recurring subscription ID is known. It does not explicitly mention alternatives or exclusions, but the 'report_type=recurring' hint and the singular nature imply when it is appropriate compared to list_subscriptions.

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

get_transactionA

Fetch a single transaction by its gateway transaction ID. Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
transaction_idYesThe gateway transaction ID to look up.

TDQS

A4/5.0
Behavior3/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. It discloses 'Read-only' which is a useful safety trait, but does not mention error behavior, return format, or rate limits. This is acceptable for a simple read operation but lacks depth.

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 short, front-loaded sentences with no redundant words. Every clause contributes to understanding the tool's purpose and safety, making it highly efficient.

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?

Given the tool's simplicity (one parameter, no output schema) and the presence of siblings, the description covers intent and read-only nature sufficiently. Some details like return value or error cases are omitted, but they are not critical for a basic fetch operation.

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 covers 100% of the parameter, already indicating it is the gateway transaction ID. The description adds no new semantics beyond what the schema provides, thus baseline score 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?

The description clearly states the verb 'Fetch' with a specific resource ('a single transaction') and the required identifier ('by its gateway transaction ID'). It distinguishes from sibling tools like search_transactions and list_* tools by emphasizing 'single' and the gateway ID lookup.

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

Usage Guidelines4/5

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

The description implies usage when you have a gateway transaction ID and need one specific transaction. It does not explicitly mention alternatives or exclusions, but the context is clear enough to infer appropriate use.

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

list_customer_vaultA

List stored Customer Vault records, optionally filtered by created/updated date range (report_type=customer_vault). Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_dateNoEnd of range, NMI format YYYYMMDDhhmmss.
start_dateNoStart of range, NMI format YYYYMMDDhhmmss.
date_searchNoWhich date(s) to filter on, e.g. 'created', 'updated', or 'created,updated'.

TDQS

A3.6/5.0
Behavior3/5

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

With no annotations provided, the description must carry the behavioral disclosure burden. It mentions 'Read-only' and optional date-range filtering, which are useful, but it does not disclose pagination, return format, permissions, or limitations. There is no contradiction with annotations, but the disclosure is minimal.

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 sentence, front-loaded with the action and resource. It is concise, but the parenthetical 'report_type=customer_vault' introduces a technical detail that is not explained and may be unnecessary for the agent.

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?

The tool is simple with three optional parameters and no output schema, so the description should explain what the tool returns. It covers purpose and filtering options but does not describe the response shape or any caveats, leaving the agent to infer the return format from the tool name.

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% coverage for parameter descriptions, so the baseline is met. The description adds a general statement about optional filtering, but it does not provide additional semantic detail beyond what is already in the schema descriptions.

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 clearly states that this tool lists stored Customer Vault records, with an optional date-range filter. This distinguishes it from sibling tools like get_customer_vault_record, which retrieves a single record, by focusing on the list action.

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 provides clear context that this is for listing records with optional filtering, but it does not explicitly state when to use this tool versus alternatives such as get_customer_vault_record or search_transactions. Usage is implied rather than explicitly directed.

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

list_recurring_plansA

List recurring billing plans, optionally filtered to a single plan (report_type=recurring_plans). Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
plan_idNoOptional plan ID to return a single plan instead of all plans.

TDQS

A4/5.0
Behavior4/5

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

With no annotations provided, the description explicitly states 'Read-only,' which is an important behavioral trait for an agent to know. It also mentions optional filtering, but does not disclose limits, pagination, or error behavior. Still, the read-only declaration adds meaningful context beyond the bare listing.

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 sentence with a parenthetical, no redundant content, and front-loads the core action. Every word earns its place.

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 list tool with one optional parameter and no output schema, the description covers the essential context: what it lists, the optional filter, and that it is read-only. It does not mention pagination or return format, but these are not critical for this simple use case.

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 covers 100% of parameters, with plan_id already described as optional and returning a single plan. The description repeats this via 'optionally filtered to a single plan.' Since the schema is fully documented, the description adds minimal extra parameter semantics but is not deficient.

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 uses a specific verb ('List') and resource ('recurring billing plans'), and clearly distinguishes from siblings like list_subscriptions or list_customer_vault by naming a unique resource type. The optional filter to a single plan is also stated.

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 when to use the tool (to list recurring billing plans) but does not compare it to alternatives such as list_subscriptions or get_subscription. No explicit exclusions or 'when not to use' guidance is provided.

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

list_subscriptionsA

List recurring subscriptions, optionally filtered by created/updated date range (report_type=recurring). Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
end_dateNoEnd of range, NMI format YYYYMMDDhhmmss.
start_dateNoStart of range, NMI format YYYYMMDDhhmmss.
date_searchNoWhich date(s) to filter on, e.g. 'created' or 'updated' or 'created,updated'.

TDQS

A3.7/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 of safety disclosure. It explicitly says 'Read-only' and mentions filtering by date range, which adds behavioral context. However, the unexplained '(report_type=recurring)' is confusing and may mislead, and no pagination or response details are given.

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

Conciseness3/5

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

The description is short and front-loaded, but the parenthetical '(report_type=recurring)' is an unnecessary implementation detail that doesn't earn its place and obscures clarity. The structure is otherwise efficient.

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 list tool with no output schema, the description covers purpose, filtering, and read-only behavior. However, it omits common list-operation details like pagination, response format, or preconditions, and the confusing report_type mention reduces completeness.

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% with each parameter described, so the schema does the heavy lifting. The description adds a general 'created/updated date range' hint but provides no additional syntax or format details beyond what's in the schema.

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 clearly states the tool's function: 'List recurring subscriptions' with optional date range filtering. This distinguishes it from siblings like get_subscription (single) and list_recurring_plans (plans), using a specific verb and resource.

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 for listing recurring subscriptions but does not explicitly state when to use this tool over alternatives. It lacks exclusions or references to sibling tools, so guidance is implied rather than explicit.

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

search_transactionsA

Search transactions by date range and optional filters (condition, action type, payment type, source, email, order id). Read-only.

ParametersJSON Schema
NameRequiredDescriptionDefault
emailNoFilter by customer email address.
sourceNoFilter by transaction source.
end_dateNoEnd of range. NMI datetime format YYYYMMDDhhmmss (e.g. 20260101000000 for 2026-01-01 00:00:00).
order_idNoFilter by merchant-supplied order id.
conditionNoComma-separated transaction conditions: pending, pendingsettlement, in_progress, abandoned, failed, canceled, complete, unknown.
start_dateNoStart of range. NMI datetime format YYYYMMDDhhmmss (e.g. 20260101000000 for 2026-01-01 00:00:00).
action_typeNoComma-separated action types: sale, refund, credit, auth, capture, void, return.
transaction_typeNoPayment type filter: 'cc' (card) or 'ck' (ACH/check).

TDQS

A3.8/5.0
Behavior3/5

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

The description discloses that the tool is read-only, which is a useful safety trait given no annotations exist. However, it does not explain the return format, whether results are a list, how filters combine, or any pagination/error behavior, leaving some behavioral ambiguity.

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?

One concise sentence immediately conveys the tool's purpose and filter options, with no wasted words. It is front-loaded and efficiently structured.

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?

With 8 parameters and no output schema, the description is too brief to be complete. It doesn't clarify that start_date and end_date are optional despite the 'date range' phrasing, nor does it explain search result behavior, any constraints, or how filters interact, creating ambiguity for a complex tool.

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 already provides descriptions for all 8 parameters, so the description adds little beyond enumerating filter types. The mapping from 'payment type' to transaction_type is implicit but not harmful. Baseline 3 is appropriate when schema coverage is 100%.

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 clearly states the tool searches transactions by date range and optional filters, which is a specific verb+resource+scope. It distinguishes itself from sibling tools that handle recurring plans, subscriptions, and customer vault records by focusing on transactions.

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

Usage Guidelines4/5

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

The description gives clear context as a search tool with read-only behavior, implying it is for querying transactions rather than modifying them. However, it does not explicitly mention when to use this instead of get_transaction or other alternatives, nor does it state exclusions.

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 updatesv0.1.1
    • First observedget_customer_vault_record
    • First observedget_subscription
    • First observedget_transaction
    • First observedlist_customer_vault
    • First observedlist_recurring_plans
    • First observedlist_subscriptions
    • First observedsearch_transactions

TDQS

A4.1/5.0

Scored across 7 tools

Disambiguation5/5

Each tool targets a distinct resource and action: plans, transactions, subscriptions, and customer vault entries. The get vs. list/search operations are clearly separated, making misselection unlikely.

Naming Consistency4/5

Most tools follow a consistent verb_noun pattern (list_*, get_*), but 'search_transactions' deviates from the list_* convention for collection queries, and 'get_customer_vault_record' includes an extra descriptor compared to similar getters. These are minor deviations.

Tool Count5/5

With 7 tools, the set is well-scoped for a read-only reporting API, covering the core entities without unnecessary redundancy or bloat.

Completeness5/5

For a read-only reporting domain, the coverage is complete: all major entities (plans, transactions, subscriptions, customer vault) have retrieval capabilities, including single-item and list/search variants. No obvious gaps are present.

Maintenance

ActivityStale
ResponsivenessResponsive

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

  • F
    license
    Not graded
    quality
    D
    maintenance
    Read-only MCP server for TourScale ERPNext, enabling agents to query franchisees, agreements, invoices, and GL entries via natural language.
    -
  • A
    license
    Not graded
    quality
    A
    maintenance
    Security-first, read-only MCP server for Microsoft SQL Server, enabling safe natural-language querying of databases.
    15
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    A read-only MCP server for Wave Accounting that lets you query accounts receivable (outstanding invoices with viewing status) and monthly invoiced revenue via natural language.
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Read-only MCP server enabling pest and lawn owners to ask FieldRoutes questions in plain English, with owner-shaped tools and a hosted connect vault.
    MIT

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/praveendias1180/easypaydirect-mcp'

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