# Alternative Payments (oci · ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8)

MCP server for Alternative Payments — customers, invoices, payment requests, payouts, webhooks.

- Trust score: 36/100 (low)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-22

## Components

- oci · `ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8`: 36/100 (this document), [markdown](https://verifymcp.io/servers/wyre-technology-alternative-payments-mcp/ghcr-io-wyre-technology-alternative-payments-mcp-v1-0-8.md), [page](https://verifymcp.io/servers/wyre-technology-alternative-payments-mcp/ghcr-io-wyre-technology-alternative-payments-mcp-v1-0-8)

## Channel facts

- Registry: `oci`
- Package: `ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8`
- Transport: `stdio`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically from public evidence about the published package, including repeated runs of it in an isolated sandbox, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-22.

- **Supply Chain Security**: 0/100
  - Malware scan not yet available for this package.
  - Known CVEs could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
  - Install-script risk not yet assessed.
  - Dependency health could not be checked: this artifact ships no SBOM, so there is no dependency list to read. Publishing one would let us assess it.
- **Provenance & Transparency**: 32/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - License check failed: the license (NOASSERTION) isn't a recognized OSI-approved license.
  - Actively maintained (last published 1 days ago).
  - Security-disclosure policy not yet verified: we couldn't inspect the source repository.
- **Schema Quality & AI Usability**: 78/100
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1135 tokens (~43/item across 26 items; 26 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 0/100
  - Stability not yet verified: not enough scan history yet (needs a 30-day window).
- **Tool Coverage**: 92/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 75% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

**Unverified: 2 categories.** Categories scored 0 because we could not verify them: a data source with nothing on this package, evidence we could not reach, or a check we could not run. We only credit what we can confirm.

## Install

### How do I install the Alternative Payments MCP server?

Alternative Payments runs locally as a container image, launched with docker run --rm -i ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8. Ready-made configuration for Claude, Cursor, VS Code, Codex and 3 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add wyre-technology-alternative-payments-mcp -- docker run --rm -i ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8
```

### Cursor

```json
{
  "mcpServers": {
    "wyre-technology-alternative-payments-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "wyre-technology-alternative-payments-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add wyre-technology-alternative-payments-mcp -- docker run --rm -i ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "wyre-technology-alternative-payments-mcp": {
      "type": "local",
      "command": [
        "docker",
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"
      ],
      "enabled": true
    }
  }
}
```

### Hermes

```yaml
mcp_servers:
  wyre-technology-alternative-payments-mcp:
    command: "docker"
    args: ["run", "--rm", "-i", "ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"]
```

### Netclaw

```json
{
  "McpServers": {
    "wyre-technology-alternative-payments-mcp": {
      "Transport": "stdio",
      "Command": "docker",
      "Arguments": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"
      ]
    }
  }
}
```

### Other

```json
{
  "mcpServers": {
    "wyre-technology-alternative-payments-mcp": {
      "command": "docker",
      "args": [
        "run",
        "--rm",
        "-i",
        "ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8"
      ]
    }
  }
}
```

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-22 (score 36, 0)

- [functional regression] Security disclosure: fail → unverified

### 2026-08-20 (score 36)

First indexed and scored.

## MCP tools (26)

### `ap_navigate` (~102 tokens)

Discover available Alternative Payments tools by domain. All tools are callable at any time — this is a help/discovery aid, not a prerequisite.

Input parameters:

- `domain` (string, required): The domain to explore: - customers: list/get/create/archive customers and manage their users - invoicing: invoices, payment & PDF links, and hosted payment requests - payments: read-only transactions…

### `ap_status` (~18 tokens)

Check Alternative Payments API connection status and available domains.

### `ap_list_customers` (~37 tokens)

List customers (cursor paginated).

Input parameters:

- `after` (string): Pagination cursor.
- `limit` (number): Max results to return.

### `ap_get_customer` (~25 tokens)

Retrieve a single customer by id.

Input parameters:

- `id` (string, required): Customer id.

### `ap_list_customer_users` (~26 tokens)

List users associated with a customer.

Input parameters:

- `id` (string, required): Customer id.

### `ap_create_customer` (~32 tokens)

Create a new customer.

Input parameters:

- `email` (string, required): Customer email.
- `name` (string, required): Customer name.

### `ap_add_customer_user` (~50 tokens)

Add a user to a customer account.

Input parameters:

- `email` (string, required)
- `first_name` (string, required)
- `id` (string, required): Customer id.
- `last_name` (string, required)

### `ap_archive_customer` (~53 tokens)

⚠ HIGH-IMPACT. Archives (soft-deletes) a customer. The customer will no longer appear in active lists. Confirm with the user before invoking.

Input parameters:

- `id` (string, required): Customer id to archive.

### `ap_list_invoices` (~59 tokens)

List invoices, optionally filtered by status or customer.

Input parameters:

- `after` (string): Pagination cursor.
- `customer_id` (string): Filter by customer id.
- `limit` (number)
- `status` (string): Filter by invoice status.

### `ap_get_invoice` (~25 tokens)

Retrieve a single invoice by id.

Input parameters:

- `id` (string, required): Invoice id.

### `ap_get_invoice_payment_link` (~29 tokens)

Get the hosted payment link for an invoice.

Input parameters:

- `id` (string, required): Invoice id.

### `ap_get_invoice_pdf_link` (~30 tokens)

Get a signed PDF download link for an invoice.

Input parameters:

- `id` (string, required): Invoice id.

### `ap_create_invoice` (~64 tokens)

Create an invoice with line items.

Input parameters:

- `currency` (string, required): ISO currency code, e.g. USD.
- `customer_id` (string, required)
- `due_date` (string, required): Due date (YYYY-MM-DD).
- `line_items` (array, required): Invoice line items.

### `ap_create_payment_request` (~92 tokens)

Create a one-time payment request, returning a hosted checkout link. This does not charge anyone — it produces a URL the customer can visit to pay.

Input parameters:

- `amount` (number, required): Amount to request.
- `currency` (string, required): ISO currency code, e.g. USD.
- `redirect_url` (string, required): URL to redirect the customer to after payment.
- `reference_id` (string): Optional reference id.

### `ap_get_payment_request` (~29 tokens)

Retrieve a payment request and its current status.

Input parameters:

- `id` (string, required): Payment request id.

### `ap_archive_invoice` (~38 tokens)

⚠ HIGH-IMPACT. Archives an invoice. Confirm with the user before invoking.

Input parameters:

- `id` (string, required): Invoice id to archive.

### `ap_list_transactions` (~130 tokens)

List payment transactions with optional filters (type, status, customer, invoice, payment method, date range).

Input parameters:

- `after` (string): Cursor (forward).
- `before` (string): Cursor (backward).
- `created_at_end` (string): RFC3339 timestamp.
- `created_at_start` (string): RFC3339 timestamp.
- `customer_id` (string)
- `invoice_id` (string)
- `limit` (number)
- `payment_method` (string): e.g. card or standard_ach.
- `status` (string)
- `type` (string)

### `ap_get_transaction` (~25 tokens)

Retrieve a single transaction by id.

Input parameters:

- `id` (string, required): Transaction id.

### `ap_list_payouts` (~31 tokens)

List payout batches.

Input parameters:

- `after` (string): Pagination cursor.
- `limit` (number)

### `ap_get_payout` (~27 tokens)

Retrieve a single payout by id.

Input parameters:

- `id` (string, required): Payout id.

### `ap_list_payout_transactions` (~29 tokens)

List the transactions included in a payout.

Input parameters:

- `id` (string, required): Payout id.

### `ap_list_webhooks` (~31 tokens)

List webhook subscriptions.

Input parameters:

- `limit` (number)
- `topic` (string): Filter by topic.

### `ap_list_webhook_events` (~34 tokens)

View webhook delivery history.

Input parameters:

- `limit` (number)
- `status` (string): Filter by delivery status.

### `ap_create_webhook` (~37 tokens)

Subscribe to a webhook topic.

Input parameters:

- `endpoint_url` (string, required): Destination URL.
- `topic` (string, required): Topic to subscribe to.

### `ap_retry_webhooks` (~15 tokens)

Resume failed webhook delivery.

### `ap_delete_webhook` (~67 tokens)

⚠ DESTRUCTIVE — IRREVERSIBLE. Permanently unsubscribes a webhook. Future events for this subscription will no longer be delivered. This action cannot be undone. Confirm with the user before invoking.

Input parameters:

- `subscription_id` (string, required): Webhook subscription id to delete.

## Diagnostics

Captured diagnostic sections: Provenance. The full working is on the page: https://verifymcp.io/servers/wyre-technology-alternative-payments-mcp/ghcr-io-wyre-technology-alternative-payments-mcp-v1-0-8#diagnostics

## Score history

- 2026-08-22: 36
- 2026-08-21: 36
- 2026-08-20: 36

## Common questions

### What is the Alternative Payments MCP server?

Alternative Payments is an MCP server listed in the public MCP registry as io.github.wyre-technology/alternative-payments-mcp. MCP server for Alternative Payments, customers, invoices, payment requests, payouts, webhooks. This page covers its container image (ghcr.io/wyre-technology/alternative-payments-mcp:v1.0.8).

### Is the Alternative Payments MCP server safe to use?

Alternative Payments scores 36 out of 100 on VerifyMCP. That is a record of what we were able to check automatically, not an endorsement. The category breakdown on this page shows every signal behind the number, including the ones we could not confirm.

### What tools does the Alternative Payments MCP server expose?

Alternative Payments exposes 26 tools: ap_navigate, ap_status, ap_list_customers, ap_get_customer, ap_list_customer_users, and 21 more. Their descriptions and schemas cost roughly 1,135 tokens of context every time the server is loaded.

### Is the Alternative Payments MCP server still maintained?

Alternative Payments is still listed as active in the MCP registry. We last reached this channel on 22 August 2026. Those dates come from our own scans of the registry and the channel itself, not from anything the publisher announced.

### What licence is the Alternative Payments MCP server under?

Alternative Payments declares the NOASSERTION licence, which is not on the OSI-approved list. Read the terms before using it at work, and note this covers the source only, not the cost of any service it calls.

## Links

- Repository: https://github.com/wyre-technology/alternative-payments-mcp
- Changelog RSS feed: https://verifymcp.io/servers/wyre-technology-alternative-payments-mcp/ghcr-io-wyre-technology-alternative-payments-mcp-v1-0-8.xml
- Changelog JSON feed: https://verifymcp.io/servers/wyre-technology-alternative-payments-mcp/ghcr-io-wyre-technology-alternative-payments-mcp-v1-0-8.json
- HTML version of this page: https://verifymcp.io/servers/wyre-technology-alternative-payments-mcp/ghcr-io-wyre-technology-alternative-payments-mcp-v1-0-8
