Skip to main content
Glama
thanhnv2210

finpay-mcp-server

by thanhnv2210

finpay-mcp-server

An MCP (Model Context Protocol) server that exposes a fictional payment domain as tools, resources, and prompt templates. Connect Claude Desktop (or any MCP client) and reason over the FinPay platform — transactions, payment hubs, microservices, and system health.

Built with TypeScript + Node.js using the official @modelcontextprotocol/sdk.


What it demonstrates

  • Full MCP server implementation: 8 tools, 2 resources, 2 prompts

  • Production-quality TypeScript with strict type checking throughout

  • Tool schema design using zod — every parameter is typed and described

  • MCP governance: tool naming conventions, schema versioning, access control patterns

  • stdio transport for Claude Desktop; optional HTTP transport for remote clients


Related MCP server: AgentPay

Quickstart

Prerequisites: Node.js 22+, npm

git clone https://github.com/your-handle/finpay-mcp-server
cd finpay-mcp-server
npm install
npm run build

Connect to Claude Desktop:

Add to ~/Library/Application Support/Claude/claude_desktop_config.json:

{
  "mcpServers": {
    "finpay": {
      "command": "node",
      "args": ["/Users/ThanhNguyen/AI_WS/finpay-mcp-server/dist/index.js"]
    }
  }
}

Restart Claude Desktop. The FinPay tools will appear in the tool panel.

Run in development mode (hot reload):

npm run dev

Run with HTTP transport (Streamable HTTP, stateless):

node dist/index.js --transport http --port 3100

To require an API key on the HTTP transport:

MCP_API_KEY=your-secret node dist/index.js --transport http --port 3100

Clients must then send Authorization: Bearer your-secret with every request.


Tools

All tools operate on in-memory fixture data — no API keys or external services required (except search_docs).

Transactions

Tool

Description

get_transaction

Look up a transaction by ID (TXN-XXXXXXXXX)

list_transactions

List recent transactions. Filterable by status, hubId, and limit (max 50)

Payment Hubs

Tool

Description

get_payment_hub

Get a hub's details: status, currencies, latency, 24h success rate

list_payment_hubs

List all hubs (GlobalPay, SwiftRoute, MobileFirst, RegionalX)

Services

Tool

Description

explain_service

Describe a microservice: purpose, dependencies, dependents, health

list_services

List all microservices in the FinPay platform

System

Tool

Description

get_system_health

Unified health snapshot: overall status, per-service health, per-hub metrics, active alerts

search_docs

Full-text search via docu-rag API (requires DOCU_RAG_URL env var)


Resources

Resources expose read-only data that the LLM can load directly into context.

URI

Content

finpay://services/catalog

JSON catalog of all services with full metadata

finpay://architecture/overview

Markdown system architecture overview


Prompts

Prompt templates inject structured system context to guide LLM behaviour.

architecture-review

Loads the full service catalog, hub list, and dependency graph. Asks the model to conduct a structured architecture review.

Optional argument: focus — area to concentrate on (e.g., resilience, scalability, security)

incident-triage

Loads current system health, recent FAILED/DEGRADED transactions, and hub health metrics. Guides the model through a structured incident triage.

Optional argument: transactionId — specific transaction to investigate


Configuration

Variable

Default

Description

DOCU_RAG_URL

Base URL of the docu-rag API. Enables search_docs tool.

LOG_LEVEL

info

debug | info | warn | error

LOG_FILE

logs/app.log

Path to the log file. Directory is created automatically on startup.

MCP_API_KEY

HTTP transport only. If set, all requests must include Authorization: Bearer <value>.

No API keys required for the core 7 tools. The server runs fully without any .env file.

Copy .env.example if you want to enable the optional search_docs tool:

cp .env.example .env
# Set DOCU_RAG_URL=http://localhost:8001

Example Interactions

Once connected to Claude Desktop, try:

Show me all FAILED transactions in the last hour.
Which payment hub has the lowest success rate right now?
Explain the dependency chain for hub-adapter-service and tell me what breaks if compliance-service goes down.
Run an architecture review focused on resilience.
Triage the incident for transaction TXN-100000011.

Governance

Tool Naming Conventions

  • Names are snake_case, verb-first for actions: get_, list_, search_, explain_

  • Tool names are a public API — never renamed once published

  • Breaking changes (removed/renamed params) require a new tool name (e.g., get_transaction_v2) and a deprecation notice before the old one is removed

Schema Versioning

This server follows semantic versioning (package.json):

Change type

Version bump

New optional parameter or new response field

Patch (0.0.X)

New tool, new resource, new prompt

Minor (0.X.0)

Removed tool, removed required param, renamed tool

Major (X.0.0) only after deprecation period

Access Control

stdio transport inherits OS user permissions. It is suitable for local, trusted use only (Claude Desktop on your own machine).

HTTP transport is intended for hosted deployments. In production, all tool calls should require Authorization: Bearer <token>. The current HTTP transport implementation accepts a --api-key flag to enable simple token validation. Scope-based access control (restricting which tools a given API key can call) is documented in docs/decisions/ADR-001-transport-strategy.md and recommended for any multi-tenant deployment.

All tools in this server are read-only over mock data. In a production server with write access to real systems, each mutating tool would require an explicit capability scope.


Development

npm run typecheck   # type-check without building
npm test            # run tests (vitest)
npm run lint        # eslint
npm run build       # compile to dist/

CI runs on every push: type-check → lint → test.


Project Structure

src/
├── index.ts                  # Entry point — CLI arg parsing, transport selection
├── server.ts                 # McpServer setup, registers all tools/resources/prompts
├── logger.ts                 # File + stderr logger (writes to logs/app.log)
├── logging-transport.ts      # Transport wrapper — access log per request/response cycle
├── tools/
│   ├── transactions.ts       # get_transaction, list_transactions
│   ├── hubs.ts               # get_payment_hub, list_payment_hubs
│   ├── services.ts           # explain_service, list_services
│   ├── health.ts             # get_system_health
│   └── docs.ts               # search_docs (docu-rag proxy, requires DOCU_RAG_URL)
├── resources/
│   ├── services-catalog.ts   # finpay://services/catalog
│   └── architecture-overview.ts  # finpay://architecture/overview
├── prompts/
│   ├── architecture-review.ts
│   └── incident-triage.ts
└── data/
    ├── transactions.json     # 20 fixture transactions
    ├── hubs.json             # 4 fixture hubs
    └── services.json         # 7 fixture services
logs/                         # Runtime log output (gitignored)
└── app.log
docs/decisions/               # Architecture Decision Records
tests/
└── tools/                    # Unit tests for all tool modules

License

MIT

F
license - not found
-
quality - not tested
C
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

Related MCP Servers

  • A
    license
    -
    quality
    C
    maintenance
    MCP server for AgentPay — the payment gateway for autonomous AI agents. Fund a wallet once, give your agent the key, and it discovers, provisions, and pays for tool APIs on its own. One key, every tool.
    Last updated
    112
    1
    MIT
  • A
    license
    -
    quality
    C
    maintenance
    MCP server for AgentPay — the payment gateway for autonomous AI agents. Fund a wallet once, give your agent the key, and it discovers, provisions, and pays for tool APIs on its own. One key, every tool.
    Last updated
    112
    1
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    A production-grade MCP server that exposes real-time banking data replicated via Oracle GoldenGate CDC as structured tools for AI agents, enabling read, score, and write operations on customer, account, transaction, and alert data.
    Last updated
    1
  • A
    license
    A
    quality
    B
    maintenance
    A local MCP server for Stripe payment operations with 52 tools across 8 domains, featuring built-in PII redaction and strict input validation for safe AI-assisted development workflows.
    Last updated
    52
    25
    1
    MIT

View all related MCP servers

Related MCP Connectors

  • MCP server for AI agents to plan, verify, and deploy Cloudflare-native apps.

  • AI Reasoning Cache & Consensus Layer with 11 MCP tools via Streamable HTTP.

  • Hosted MCP server exposing US hospital procedure cost data to AI assistants

View all MCP Connectors

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/thanhnv2210/finpay-mcp-server'

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