# io.github.iamalanlui/apipay (npm · apifare-mcp)

Prepaid balance for AI agents: one key, 4,900+ tools your agent can run today, caps, receipts.

- Trust score: 72/100 (medium)
- Change this week: +4
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-09-20

## Components

- remote · `apifare.com`: 65/100, [markdown](https://verifymcp.io/servers/iamalanlui-apipay/apifare.md), [page](https://verifymcp.io/servers/iamalanlui-apipay/apifare)
- npm · `apifare-mcp`: 72/100 (this document), [markdown](https://verifymcp.io/servers/iamalanlui-apipay/apifare-mcp.md), [page](https://verifymcp.io/servers/iamalanlui-apipay/apifare-mcp)

## Channel facts

- Registry: `npm`
- Package: `apifare-mcp`
- Version: `0.4.1`
- 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-09-20.

- **Supply Chain Security**: 98/100
  - No malware found by supply-chain analysis.
  - No known CVEs affecting this package version or its production dependencies.
  - No install/post-install scripts declared.
  - 31 of 96 dependencies flagged as unhealthy.
- **Provenance & Transparency**: 45/100
  - Source repository is publicly reachable at the declared URL.
  - Provenance check failed: no build-provenance attestation is published.
  - Clear OSI-approved license (MIT).
  - Actively maintained (last published 7 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 77/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 862 tokens (~95/item across 9 items; 9 tools + 0 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 93/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 78% of tool parameters carry a description.
- **Tool Safety**: 75/100
  - No prompt-injection markers were found in the server instructions, tool names or descriptions we captured.
  - 0 of 1 tool(s) whose name or description implies an irreversible operation declare an MCP destructiveHint annotation; "secret_transfer" implies "transfer" and declares no destructiveHint at all, which the MCP spec reads as destructive by default.
  - An AI judge read all 9 captured unit(s) of tool text and found none that tries to manipulate the model reading it.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### How do I install the io.github.iamalanlui/apipay MCP server?

io.github.iamalanlui/apipay runs locally as an npm package, launched with npx -y apifare-mcp. Ready-made configuration for Claude, Cursor, VS Code, Codex and 5 more is on this page, copied from each client's own documentation.

### Claude

```bash
claude mcp add iamalanlui-apipay -- npx -y apifare-mcp
```

### Cursor

```json
{
  "mcpServers": {
    "iamalanlui-apipay": {
      "command": "npx",
      "args": [
        "-y",
        "apifare-mcp"
      ]
    }
  }
}
```

### VS Code

```json
{
  "servers": {
    "iamalanlui-apipay": {
      "command": "npx",
      "args": [
        "-y",
        "apifare-mcp"
      ]
    }
  }
}
```

### Codex

```bash
codex mcp add iamalanlui-apipay -- npx -y apifare-mcp
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "iamalanlui-apipay": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "apifare-mcp"
      ],
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add iamalanlui-apipay --command npx --arg -y --arg apifare-mcp
```

### Hermes

```yaml
mcp_servers:
  iamalanlui-apipay:
    command: "npx"
    args: ["-y", "apifare-mcp"]
```

### Netclaw

```json
{
  "McpServers": {
    "iamalanlui-apipay": {
      "Transport": "stdio",
      "Command": "npx",
      "Arguments": [
        "-y",
        "apifare-mcp"
      ]
    }
  }
}
```

### Vellum

```bash
assistant mcp add iamalanlui-apipay -t stdio -c npx -a -y apifare-mcp
```

### Other

```json
{
  "mcpServers": {
    "iamalanlui-apipay": {
      "command": "npx",
      "args": [
        "-y",
        "apifare-mcp"
      ]
    }
  }
}
```

## 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-09-20 (score 72, +1)

No change was recorded against any check on this day. Stability & Change Management went from 23 to 27. That category is still filling its 30-day observation window: 7 days of observed history at the previous scan, 8 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-09-19 (score 71, +3)

- [functional improvement] Stability: unverified → 0.23

### 2026-09-13 (score 68, +15)

- [security improvement] Malware scan: unverified → pass

### 2026-09-12 (score 53)

First indexed and scored.

## MCP tools (9)

### `search_apis` (~82 tokens)

Search the apifare catalog of ready-to-call APIs (web search, scraping, weather, and more). Returns each API's slug, params, and per-call price in prepaid credits. Every miss is logged so missing APIs get added.

Input parameters:

- `query` (string, required): What kind of API you need, in plain words, e.g. "search the web"

### `call_api` (~87 tokens)

Call an API from the apifare catalog by slug (find slugs with search_apis). The cost in prepaid credits is deducted automatically and returned with the result.

Input parameters:

- `params` (object): Params object per the API's manifest, e.g. {"q": "latest AI news"}
- `slug` (string, required): API slug from search_apis, e.g. "web-search"

### `get_vault_link` (~125 tokens)

Get a secure one-time link where the user can save their OWN API key for a provider (BYOK). Use when the user wants to use their existing key (e.g. their fal.ai key) with apifare, or when an API says it is not configured. Never ask the user to paste an API key into the chat — always use this link instead. BYOK calls cost a flat 0.1 credits; the user's own provider account pays the provider.

Input parameters:

- `provider` (string, required): API slug from search_apis, e.g. "fal"

### `proxy_call` (~218 tokens)

Call a provider's NATIVE API through the apifare transparent proxy — write the request exactly as the provider's own docs say; apifare injects the auth, meters the prepaid balance, and returns the provider's response verbatim (including native error codes). Providers: dataforseo, open-meteo, apify (no key from the user), and brave/scrapingbee/openweather/fal (uses the user's vaulted key). Example: provider "dataforseo", method "POST", path "v3/serp/google/organic/live/advanced", body per DataForSEO docs.

Input parameters:

- `body`: JSON body per the provider's docs
- `method` (string): HTTP method (default GET)
- `path` (string, required): Provider-native path, no leading slash, e.g. "v3/serp/google/organic/live/advanced"
- `provider` (string, required): Proxy provider name, e.g. "dataforseo"
- `query` (object): Query params per the provider's docs

### `check_balance` (~33 tokens)

Check the remaining apifare prepaid credit balance (1 credit = $0.01) and get the top-up link.

### `topup` (~82 tokens)

Top up the apifare balance from the owner's standing auto-refill mandate (if the owner enabled one). Charges within the owner's configured limits and returns the new balance. Without a mandate, returns payment instructions to relay to the user.

Input parameters:

- `amount_usd` (integer): Optional whole-dollar amount; defaults to the mandate's refill amount and is clamped to it

### `vendor_call` (~129 tokens)

Call a vendor MANAGEMENT API (supabase, vercel, fly, resend, github, npm, cloudflare, lemonsqueezy) with the owner's vaulted root credential injected server-side. Native request/response; destructive, billing, and member/admin routes are blocked. The root token is never visible.

Input parameters:

- `body` (object): JSON body for write methods
- `method` (string): HTTP method (default GET)
- `path` (string, required): The vendor's own API path, e.g. "v9/projects"
- `vendor` (string, required): Vendor name, e.g. "vercel"

### `secret_transfer` (~61 tokens)

Move a secret from one vendor to another SERVER-SIDE — the value never enters this conversation. Example: fetch a Supabase service_role key and place it as a Vercel env var.

Input parameters:

- `from` (object, required)
- `to` (object, required)

### `secret_generate` (~45 tokens)

Generate a random secret and place it directly at a vendor resource SERVER-SIDE — the value never enters this conversation.

Input parameters:

- `bytes` (integer)
- `to` (object, required)

## Diagnostics

Captured diagnostic sections: Provenance, Dependencies. The full working is on the page: https://verifymcp.io/servers/iamalanlui-apipay/apifare-mcp#diagnostics

## Score history

- 2026-09-20: 72
- 2026-09-19: 71
- 2026-09-18: 68
- 2026-09-17: 68
- 2026-09-16: 68
- 2026-09-15: 68
- 2026-09-14: 68
- 2026-09-13: 68
- 2026-09-12: 53

## Common questions

### What is the io.github.iamalanlui/apipay MCP server?

io.github.iamalanlui/apipay is an MCP server listed in the public MCP registry as io.github.iamalanlui/apipay. Prepaid balance for AI agents: one key, 4,900+ tools your agent can run today, caps, receipts. This page covers its npm package (apifare-mcp).

### Is the io.github.iamalanlui/apipay MCP server safe to use?

io.github.iamalanlui/apipay scores 72 out of 100 on VerifyMCP. We found no known CVEs affecting it as of 20 September 2026. It declares no install or post-install scripts. 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 io.github.iamalanlui/apipay MCP server expose?

io.github.iamalanlui/apipay exposes 9 tools: search_apis, call_api, get_vault_link, proxy_call, check_balance, and 4 more. Their descriptions and schemas cost roughly 862 tokens of context every time the server is loaded.

### Is the io.github.iamalanlui/apipay MCP server still maintained?

io.github.iamalanlui/apipay is still listed as active in the MCP registry. We last reached this channel on 20 September 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 io.github.iamalanlui/apipay MCP server under?

io.github.iamalanlui/apipay declares the MIT licence, which is OSI-approved. That covers the source only, and says nothing about the cost of any service it calls.

## Links

- npm package: https://www.npmjs.com/package/apifare-mcp
- Socket report: https://socket.dev/npm/package/apifare-mcp
- Repository: https://github.com/iamalanlui/apifare-mcp
- Changelog RSS feed: https://verifymcp.io/servers/iamalanlui-apipay/apifare-mcp.xml
- Changelog JSON feed: https://verifymcp.io/servers/iamalanlui-apipay/apifare-mcp.json
- HTML version of this page: https://verifymcp.io/servers/iamalanlui-apipay/apifare-mcp
