# io.github.codespar/mcp-pomelo (npm · @codespar/mcp-pomelo)

MCP server for Pomelo — pan-LATAM card issuing: users, virtual/physical cards, transactions

- Trust score: 70/100 (medium)
- Change this week: +24
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-04

## Components

- npm · `@codespar/mcp-pomelo`: 70/100 (this document), [markdown](https://verifymcp.io/servers/codespar-mcp-pomelo/codespar-mcp-pomelo.md), [page](https://verifymcp.io/servers/codespar-mcp-pomelo/codespar-mcp-pomelo)

## Channel facts

- Registry: `npm`
- Package: `@codespar/mcp-pomelo`
- Version: `0.1.0`
- 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-04.

- **Supply Chain Security**: 86/100
  - No malware found by supply-chain analysis.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
  - No install/post-install scripts declared.
  - Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.
- **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 31 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 76/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 1030 tokens (~114/item across 9 items; 9 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 30/100
  - Stability observed for 9 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 100/100
  - Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add codespar-mcp-pomelo -- npx -y @codespar/mcp-pomelo
```

### Codex

```bash
codex mcp add codespar-mcp-pomelo -- npx -y @codespar/mcp-pomelo
```

### opencode

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

### OpenClaw

```bash
openclaw mcp add codespar-mcp-pomelo --command npx --arg -y --arg @codespar/mcp-pomelo
```

### Hermes

```yaml
mcp_servers:
  codespar-mcp-pomelo:
    command: "npx"
    args: ["-y", "@codespar/mcp-pomelo"]
```

### Other

```json
{
  "mcpServers": {
    "codespar-mcp-pomelo": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-pomelo"
      ]
    }
  }
}
```

## 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-04 (score 70, +1)

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

### 2026-08-03 (score 69, +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-08-02 (score 68, +63)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security improvement] Malware scan: unverified → pass
- [functional improvement] Schema quality: unverified → excellent
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Stability: unverified → 0.23
- [functional improvement] Tool coverage: unverified → 100
- [functional] Licence: MIT

### 2026-08-01 (score 5, −16)

- [functional regression] Tool coverage: 100 → unverified

### 2026-07-31 (score 21, −3)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 24, −22)

- [functional regression] Tool coverage: 100 → unverified
- [functional] First check of Schema quality: unverified

### 2026-07-27 (score 46)

First indexed and scored.

## MCP tools (9)

### `create_user` (~253 tokens)

Create a card-holder identity (POST /users/v1). The user is the person or business the card is issued to. Pass the Pomelo user shape for the target country (name, surname, identification_type/value, birthdate, address, email, phone).

Input parameters:

- `address` (object): Residential address: street_name, street_number, zip_code, city, region, country (ISO-3)
- `birthdate` (string): YYYY-MM-DD
- `email` (string): Email address
- `extra` (object): Any additional Pomelo user fields, merged into the payload
- `gender` (string): MALE | FEMALE | OTHER (country-dependent requirement)
- `idempotency_key` (string): Optional idempotency key. Auto-generated when omitted.
- `identification_type` (string, required): Country document type (e.g. DNI, CPF, CURP, CC)
- `identification_value` (string, required): Document number
- `name` (string, required): Given name
- `operation_country` (string, required): ISO-3 country of operation (e.g. ARG, BRA, MEX, COL)
- `phone` (string): Phone in international format
- `surname` (string, required): Family name

### `get_user` (~38 tokens)

Fetch a user by id (GET /users/v1/{id}).

Input parameters:

- `user_id` (string, required): Pomelo user id (usr-...)

### `update_user` (~92 tokens)

Patch a user (PATCH /users/v1/{id}). Pass only the fields to change (e.g. status ACTIVE | BLOCKED, email, phone, address).

Input parameters:

- `idempotency_key` (string): Optional idempotency key. Auto-generated when omitted.
- `patch` (object, required): Fields to update, Pomelo user shape
- `user_id` (string, required): Pomelo user id (usr-...)

### `create_card` (~169 tokens)

Issue a card for a user (POST /cards/v1). card_type VIRTUAL is usable immediately; PHYSICAL enters embossing/shipping and must be activated on receipt. affinity_group_id selects the card program (BIN, art, limits) configured with Pomelo.

Input parameters:

- `address` (object): Shipping address for PHYSICAL cards (street_name, street_number, zip_code, city, region, country)
- `affinity_group_id` (string, required): Card program id (afg-...)
- `card_type` (string, required): Card form factor
- `extra` (object): Any additional Pomelo card fields, merged into the payload
- `idempotency_key` (string): Optional idempotency key. Auto-generated when omitted.
- `user_id` (string, required): Owner user id (usr-...)

### `get_card` (~54 tokens)

Fetch a card by id (GET /cards/v1/{id}). Returns masked PAN, status, type and program data — never full card credentials.

Input parameters:

- `card_id` (string, required): Pomelo card id (crd-...)

### `list_cards` (~82 tokens)

List cards (GET /cards/v1), filterable by user and status. Paginated.

Input parameters:

- `page` (number): Page number (0-based)
- `size` (number): Page size
- `status` (string): Filter by status (e.g. ACTIVE, BLOCKED, DISABLED)
- `user_id` (string): Filter by owner user id

### `update_card_status` (~128 tokens)

Change a card's lifecycle status (PATCH /cards/v1/{id}): ACTIVE to unblock/activate, BLOCKED to freeze, DISABLED to cancel permanently. status_reason is required by Pomelo for blocks (e.g. CLIENT_INTERNAL_REASON, LOST, STOLEN).

Input parameters:

- `card_id` (string, required): Pomelo card id (crd-...)
- `idempotency_key` (string): Optional idempotency key. Auto-generated when omitted.
- `status` (string, required): Target status
- `status_reason` (string): Reason code (required for BLOCKED/DISABLED)

### `list_transactions` (~107 tokens)

Search the card-transactions feed (GET /transactions/v1), filterable by card, user and time window. Paginated.

Input parameters:

- `card_id` (string): Filter by card id
- `from` (string): ISO-8601 start of window
- `page` (number): Page number (0-based)
- `size` (number): Page size
- `to` (string): ISO-8601 end of window
- `user_id` (string): Filter by user id

### `get_transaction` (~40 tokens)

Fetch a single card transaction by id (GET /transactions/v1/{id}).

Input parameters:

- `transaction_id` (string, required): Pomelo transaction id (ctx-...)

## Diagnostics

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

## Score history

- 2026-08-04: 70
- 2026-08-03: 69
- 2026-08-02: 68
- 2026-08-01: 5
- 2026-07-31: 21
- 2026-07-30: 24
- 2026-07-28: 46
- 2026-07-27: 46

## Links

- npm package: https://www.npmjs.com/package/@codespar/mcp-pomelo
- Socket report: https://socket.dev/npm/package/@codespar/mcp-pomelo
- Repository: https://github.com/codespar/mcp-dev-latam
- Changelog RSS feed: https://verifymcp.io/servers/codespar-mcp-pomelo/codespar-mcp-pomelo/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/codespar-mcp-pomelo/codespar-mcp-pomelo/changelog.json
- HTML version of this page: https://verifymcp.io/servers/codespar-mcp-pomelo/codespar-mcp-pomelo
