Skip to content
verify mcp Beta VerifyMCP is currently in beta. If you notice any issues, email [email protected] and we’ll put it right.

io.github.codespar/mcp-rede

NPM · @CODESPAR/MCP-REDE · SCANNED AUG 5

MCP server for Rede — Itaú-owned BR acquirer: authorize/capture/refund, zero-auth, card tokens

Available components

+23 this week 68 Trust /100
Trust breakdown (6 categories)

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. How we score →

Supply Chain Security86
  • No malware found by supply-chain analysis.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree.Partial
  • No install/post-install scripts declared.Pass
  • Only part of the dependency tree could be resolved (94 of 98), so this covers what we could see, not the whole tree. View diagnostics → Partial
Provenance & Transparency45
Schema Quality & AI Usability71
  • AI-judged instruction clarity (good).Pass
  • Tool/resource definitions use about 2243 tokens (~101/item across 22 items; 22 tools + 0 resources), lean.Pass
  • Usage-examples check failed: none of the tools include examples. See how to fix → Fail
Stability & Change Management33
  • Stability observed for 10 of 30 days with no destabilising changes; credit accrues until the full window elapses.Partial
Tool Coverage91
  • 100% of tools have a non-trivial description (not blank, and not just the tool's name).Pass
  • 74% of tool parameters carry a description.Partial
Capabilities100
  • Implements a supported MCP spec version (2025-11-25); the latest is 2026-07-28.Pass
Install

Add this component to your MCP client. Where a client-specific snippet is available, pick your client below and copy it straight into your config; otherwise use the connection detail shown.

npm · @codespar/mcp-rede

# add to Claude Code
claude mcp add codespar-mcp-rede -- npx -y @codespar/mcp-rede
# add to Codex CLI
codex mcp add codespar-mcp-rede -- npx -y @codespar/mcp-rede
// opencode.json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "codespar-mcp-rede": {
      "type": "local",
      "command": [
        "npx",
        "-y",
        "@codespar/mcp-rede"
      ],
      "enabled": true
    }
  }
}
# add to OpenClaw
openclaw mcp add codespar-mcp-rede --command npx --arg -y --arg @codespar/mcp-rede
# ~/.hermes/config.yaml
mcp_servers:
  codespar-mcp-rede:
    command: "npx"
    args: ["-y", "@codespar/mcp-rede"]
// mcp.json
{
  "mcpServers": {
    "codespar-mcp-rede": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-rede"
      ]
    }
  }
}
Changelog

Every change we have recorded for this component, newest first. Security-relevant changes are always shown. ▲ marks a change for the better, ▼ a change for the worse; unmarked changes are neutral.

  • 4 Aug 26 +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.

  • 3 Aug 26 +4
    • Stability: unverified → 0.27 functional
  • 2 Aug 26 +43
    • Provenance: unverified → fail security
    • Install scripts: unverified → pass security
    • Known CVEs: unverified → partial security
    • Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window). security
    • License: unverified → pass functional
    • Dependency health: unverified → partial functional
    • Maintenance: unverified → pass functional
    • MCP protocol: unverified → pass functional
    • Schema quality: unverified → good functional
    • Tool coverage: unverified → 100 functional
    • Licence: MIT functional
  • 1 Aug 26 0
    • Malware scan: unverified → pass security
    • Tool coverage: 100 → unverified functional
    • First check of Schema quality: unverified functional
  • 31 Jul 26 −25
    • We updated how we score, so this day's move reflects our rubric, not a change to the server See what changed → functional
  • 27 Jul 26 45

    First indexed and scored.

Diagnostics

Diagnostic detail from the automated scan of this channel: what the scanner observed at each step, so you can see exactly where a check passed or failed. It is informational only and never changes the trust score.

Captured 5 Aug 2026 · Analysed npm/@codespar/[email protected]

Provenance none

Ecosystem: npm · Outcome: none

Dependencies 94 packages

94 packages in the resolved dependency tree · 94 deprecated · 29 stale.

The dependency tree was only partially resolved, so these counts may be incomplete.

MCP tools — 22 exposed · ~2,176 tokens

The tools this component advertises to a client, with an estimated token cost for each. Expand a tool to see its parameters and schema. The per-tool counts are indicative and are not scored directly; the schema's total context footprint is one signal in Schema Quality & AI Usability.

Tool Tokens
authenticate_3ds ~195

Initiate a 3DS (EMV 3-D Secure) authentication for a card charge. Returns a threeDSecure reference id and, when required, a challenge URL for cardholder interaction.

NameTypeReqDescription
amountnumberyesAmount in cents
cardHolderNamestring
cardNumberstringPAN; never log. Prefer storageCard.
expirationMonthnumber
expirationYearnumber
installmentsnumberNumber of installments (1 for à vista)
paymentMethodstringyes'credit' or 'debit'
referencestringyesMerchant-side order reference
securityCodestring
storageCardstringToken from tokenize_card
threeDSecureobject3DS options: { onFailure: 'decline' | 'continue', userAgent, device, returnUrl }

No output schema declared.

No examples provided.

authorize_debit ~187

Authorize a debit card transaction on Rede. Requires a prior 3DS authentication — pass threeDSecure.embedded=true and a valid threeDSecure reference, or use authorize_with_3ds after authenticate_3ds.

NameTypeReqDescription
amountnumberyesAmount in cents
cardHolderNamestring
cardNumberstringPAN; never log. Prefer storageCard.
expirationMonthnumber
expirationYearnumber
referencestringyesMerchant-side order reference
securityCodestring
softDescriptorstring
storageCardstringToken from tokenize_card
threeDSecureobjectyes3DS payload: { embedded: true, onFailure: 'decline' | 'continue', userAgent, device: { ... } }. Required for débito.

No output schema declared.

No examples provided.

authorize_transaction ~232

Authorize a credit card transaction on Rede. Set capture=true to authorize + capture atomically; capture=false to authorize only (use capture_transaction later).

NameTypeReqDescription
amountnumberyesAmount in cents
capturebooleanyestrue = authorize + capture; false = authorize only
cardHolderNamestringName on card
cardNumberstringPAN; never log this value. Prefer storageCard (token) instead.
expirationMonthnumberExpiration month (1-12)
expirationYearnumberExpiration year (4 digits)
installmentsnumberyesNumber of installments (1 for à vista)
referencestringyesMerchant-side order reference (unique per merchant)
securityCodestringCVV
softDescriptorstringStatement descriptor shown on the cardholder bill
storageCardstringToken from tokenize_card (alternative to cardNumber)
subscriptionbooleanFlag as a recurring charge (MIT)
urlsarrayOptional callback/notification URL objects ({ url, kind })

No output schema declared.

No examples provided.

authorize_with_3ds ~199

Authorize a transaction after a successful 3DS authentication, attaching the 3DS reference for liability shift. Works for both credit and debit.

NameTypeReqDescription
amountnumberyesAmount in cents
capturebooleantrue = authorize + capture; false = authorize only (credit only)
cardHolderNamestring
cardNumberstringPAN; never log. Prefer storageCard.
expirationMonthnumber
expirationYearnumber
installmentsnumberNumber of installments (1 for à vista)
kindstring'credit' or 'debit'
referencestringyesMerchant-side order reference
securityCodestring
softDescriptorstring
storageCardstringToken from tokenize_card
threeDSecureIdstringyes3DS reference id from authenticate_3ds

No output schema declared.

No examples provided.

cancel_boleto ~41

Cancel an unpaid boleto. Paid boletos cannot be canceled — issue a refund via the payer's bank instead.

NameTypeReqDescription
idstringyesRede boleto id

No output schema declared.

No examples provided.

cancel_transaction ~51

Cancel an authorized-but-uncaptured transaction (void). Rede uses the refunds endpoint for both voids and refunds — cancel means full amount on an uncaptured transaction.

NameTypeReqDescription
tidstringyesRede transaction id

No output schema declared.

No examples provided.

capture_transaction ~67

Capture a previously authorized transaction (when capture=false was used). Pass amount for partial capture; omit for full.

NameTypeReqDescription
amountnumberAmount to capture in cents. Omit to capture the full authorized amount.
tidstringyesRede transaction id (tid) from authorize_transaction

No output schema declared.

No examples provided.

create_boleto ~156

Issue a boleto registrado via Rede. Rede registers the slip with the banking network and returns the typable line (linha digitável) plus the PDF/URL.

NameTypeReqDescription
amountnumberyesAmount in cents
dueDatestringyesDue date YYYY-MM-DD
instructionsarrayOptional printed instructions (strings) — e.g. fine/interest after due, discount rules.
payerobjectyesPayer object: { name, document (CPF/CNPJ, digits only), email, address: { street, number, city, state, zipCode } }
referencestringyesMerchant-side reference (unique per merchant)
softDescriptorstringStatement descriptor / beneficiary name override

No output schema declared.

No examples provided.

create_recurrence ~191

Create a native Rede recurrence (subscription). Rede handles retries and cardholder updates automatically.

NameTypeReqDescription
amountnumberyesRecurring amount in cents
cardHolderNamestring
cardNumberstringPAN; never log. Prefer storageCard.
endDatestringEnd date YYYY-MM-DD (optional)
expirationMonthnumber
expirationYearnumber
frequencystringyesBilling frequency (e.g. MONTHLY, WEEKLY, DAILY)
referencestringyesMerchant-side recurrence reference
securityCodestring
softDescriptorstring
startDatestringyesStart date YYYY-MM-DD
storageCardstringToken from tokenize_card (alternative to cardNumber)
totalRecurrencesnumberTotal number of recurrences (omit for open-ended)

No output schema declared.

No examples provided.

delete_token ~29

Delete a previously created card token.

NameTypeReqDescription
tokenIdstringyesToken id returned by tokenize_card

No output schema declared.

No examples provided.

disable_recurrence ~34

Disable (cancel) an active recurrence. Stops all future billings.

NameTypeReqDescription
idstringyesRede recurrence id

No output schema declared.

No examples provided.

get_3ds_status ~69

Check the current status of a 3DS authentication by its reference id. Returns whether the cardholder completed the challenge and the resulting 3DS reference to attach to an authorize call.

NameTypeReqDescription
threeDSecureIdstringyes3DS reference id returned by authenticate_3ds

No output schema declared.

No examples provided.

get_boleto ~66

Retrieve a boleto by Rede boleto id or by merchant reference. Returns status (REGISTERED, PAID, EXPIRED, CANCELED) and typable line.

NameTypeReqDescription
idstringRede boleto id
referencestringMerchant-side reference used at create time

No output schema declared.

No examples provided.

get_recurrence ~28

Retrieve a recurrence by Rede recurrence id.

NameTypeReqDescription
idstringyesRede recurrence id

No output schema declared.

No examples provided.

get_recurrence_transactions ~56

List transactions generated by a recurrence (one row per billing cycle executed).

NameTypeReqDescription
idstringyesRede recurrence id
pagenumberPage index (0-based)
sizenumberPage size

No output schema declared.

No examples provided.

get_token ~45

Retrieve metadata for a previously stored card token (brand, last 4, expiration). Does not return the PAN.

NameTypeReqDescription
tokenIdstringyesToken id returned by tokenize_card

No output schema declared.

No examples provided.

get_transaction ~51

Retrieve a transaction by Rede tid OR by merchant reference. Pass exactly one of tid or reference.

NameTypeReqDescription
referencestringMerchant-side reference used at authorize time
tidstringRede transaction id

No output schema declared.

No examples provided.

list_transactions ~107

List transactions in a date range. Useful for reconciliation. Rede paginates results; pass page/size to walk pages.

NameTypeReqDescription
endDatestringyesEnd date YYYY-MM-DD
pagenumberPage index (0-based)
sizenumberPage size (default 20)
startDatestringyesStart date YYYY-MM-DD
statusstringOptional status filter (e.g. AUTHORIZED, CAPTURED, DENIED)

No output schema declared.

No examples provided.

refund_transaction ~62

Refund a captured transaction. Pass amount for a partial refund; omit for full. Same endpoint as cancel; amount controls the behaviour.

NameTypeReqDescription
amountnumberRefund amount in cents. Omit for a full refund.
tidstringyesRede transaction id

No output schema declared.

No examples provided.

tokenize_card ~77

Tokenize a card for PCI-safe reuse. Returns a token (storageCard) to pass into authorize_transaction.storageCard.

NameTypeReqDescription
cardHolderNamestringyes
cardNumberstringyesPAN; never log
expirationMonthnumberyes
expirationYearnumberyes
securityCodestringyes

No output schema declared.

No examples provided.

update_recurrence ~115

Update an existing recurrence — change amount, card (storageCard), end date, or pause/resume. Pass only the fields you want to change.

NameTypeReqDescription
amountnumberNew recurring amount in cents
endDatestringNew end date YYYY-MM-DD
idstringyesRede recurrence id
softDescriptorstring
statusstringStatus override: ENABLED | DISABLED | PAUSED
storageCardstringNew card token to charge

No output schema declared.

No examples provided.

zero_auth ~118

Validate a card without charging (zero-auth / account verification). Returns whether the card is authorizable, without creating a transaction.

NameTypeReqDescription
cardHolderNamestring
cardNumberstringPAN; never log. Prefer storageCard.
expirationMonthnumber
expirationYearnumber
onlyStatusCodebooleanIf true, return status code only (faster)
securityCodestring
storageCardstringToken from tokenize_card (alternative to cardNumber)

No output schema declared.

No examples provided.