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

MCP server for Vindi — recurring billing, subscriptions, invoices

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

## Components

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

## Channel facts

- Registry: `npm`
- Package: `@codespar/mcp-vindi`
- Version: `0.2.2`
- 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 42 days ago).
  - Disclosure check failed: no security disclosure policy was found in the source repository.
- **Schema Quality & AI Usability**: 71/100
  - AI-judged instruction clarity (good).
  - Tool/resource definitions use about 1062 tokens (~53/item across 20 items; 20 tools + 0 resources), lean.
  - 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-vindi -- npx -y @codespar/mcp-vindi
```

### Codex

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

### opencode

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

### OpenClaw

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

### Hermes

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

### Other

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

## 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 69, +5)

- [functional improvement] Stability: unverified → 0.30

### 2026-08-03 (score 64, +44)

- [security regression] Provenance: unverified → fail
- [security improvement] Install scripts: unverified → pass
- [security improvement] Known CVEs: unverified → partial
- [security] Stability: Stability not yet verified: not enough scan history yet (needs a 30-day window).
- [functional improvement] Tool coverage: unverified → 100
- [functional improvement] License: unverified → pass
- [functional improvement] Dependency health: unverified → partial
- [functional improvement] Maintenance: unverified → pass
- [functional improvement] MCP protocol: unverified → pass
- [functional improvement] Schema quality: unverified → good
- [functional] Licence: MIT

### 2026-08-02 (score 20, −16)

- [functional regression] Tool coverage: 100 → unverified

### 2026-08-01 (score 36, +31)

- [security improvement] Malware scan: unverified → pass
- [functional improvement] Tool coverage: unverified → 100

### 2026-07-31 (score 5, −1)

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

### 2026-07-30 (score 6, −40)

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

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

First indexed and scored.

## MCP tools (20)

### `create_subscription` (~70 tokens)

Create a recurring subscription in Vindi

Input parameters:

- `customer_id` (number, required): Customer ID
- `payment_method_code` (string, required): Payment method (credit_card, bank_slip, pix)
- `plan_id` (number, required): Plan ID
- `start_at` (string): Start date (YYYY-MM-DD)

### `get_subscription` (~23 tokens)

Get subscription details by ID

Input parameters:

- `id` (number, required): Subscription ID

### `list_subscriptions` (~49 tokens)

List subscriptions with optional filters

Input parameters:

- `page` (number): Page number
- `per_page` (number): Items per page (default 25)
- `status` (string): Filter by status

### `create_bill` (~66 tokens)

Create a bill (charge) in Vindi

Input parameters:

- `bill_items` (array, required): Line items with product_id, amount, and quantity
- `customer_id` (number, required): Customer ID
- `payment_method_code` (string, required): Payment method (credit_card, bank_slip, pix)

### `get_bill` (~23 tokens)

Get bill details by ID

Input parameters:

- `id` (number, required): Bill ID

### `list_bills` (~45 tokens)

List bills with optional filters

Input parameters:

- `page` (number): Page number
- `per_page` (number): Items per page
- `status` (string): Filter by status

### `create_customer` (~54 tokens)

Create a customer in Vindi

Input parameters:

- `email` (string, required): Email address
- `name` (string, required): Customer name
- `phones` (array): Phone numbers
- `registry_code` (string): CPF or CNPJ

### `get_customer` (~23 tokens)

Get customer details by ID

Input parameters:

- `id` (number, required): Customer ID

### `create_plan` (~76 tokens)

Create a billing plan in Vindi

Input parameters:

- `billing_trigger_type` (string): When to bill
- `interval` (string, required): Billing interval unit
- `interval_count` (number, required): Number of intervals between billings
- `name` (string, required): Plan name
- `plan_items` (array): Plan items with product_id and cycles

### `list_plans` (~34 tokens)

List available billing plans

Input parameters:

- `page` (number): Page number
- `per_page` (number): Items per page

### `update_customer` (~62 tokens)

Update a customer's details

Input parameters:

- `email` (string): Email address
- `id` (number, required): Customer ID
- `name` (string): Customer name
- `notes` (string): Free-form notes
- `registry_code` (string): CPF or CNPJ

### `create_product` (~88 tokens)

Create a product (catalog item that can be attached to plans or bills)

Input parameters:

- `code` (string): Internal product code
- `description` (string): Product description
- `name` (string, required): Product name
- `pricing_schema` (object, required): Pricing schema (e.g. { price: 99.90, schema_type: 'flat' })
- `status` (string): Product status

### `list_products` (~44 tokens)

List products in the catalog

Input parameters:

- `page` (number): Page number
- `per_page` (number): Items per page
- `status` (string): Filter by status

### `cancel_subscription` (~22 tokens)

Cancel a subscription immediately

Input parameters:

- `id` (number, required): Subscription ID

### `reactivate_subscription` (~24 tokens)

Reactivate a canceled subscription

Input parameters:

- `id` (number, required): Subscription ID

### `cancel_bill` (~22 tokens)

Cancel a pending bill

Input parameters:

- `id` (number, required): Bill ID

### `charge_bill` (~28 tokens)

Retry charging a pending bill (runs the billing workflow)

Input parameters:

- `id` (number, required): Bill ID

### `refund_charge` (~61 tokens)

Refund a charge (full or partial). Requires the gateway to support refunds.

Input parameters:

- `amount` (number): Refund amount (omit for full refund)
- `cancel_bill` (boolean): Whether to also cancel the associated bill
- `id` (number, required): Charge ID

### `create_payment_profile` (~121 tokens)

Create a payment profile (tokenized card / saved payment method) for a customer

Input parameters:

- `card_cvv` (string): Card CVV
- `card_expiration` (string, required): Card expiration MM/YYYY
- `card_number` (string, required): Card number (PAN)
- `customer_id` (number, required): Customer ID
- `holder_name` (string, required): Cardholder name
- `payment_company_code` (string): Card brand (visa, mastercard, elo, etc.)
- `payment_method_code` (string, required): Payment method code (e.g. credit_card)

### `list_payment_profiles` (~60 tokens)

List payment profiles, optionally filtered by customer

Input parameters:

- `customer_id` (number): Filter by customer ID
- `page` (number): Page number
- `per_page` (number): Items per page
- `status` (string): Filter by status

## Diagnostics

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

## Score history

- 2026-08-04: 69
- 2026-08-03: 64
- 2026-08-02: 20
- 2026-08-01: 36
- 2026-07-31: 5
- 2026-07-30: 6
- 2026-07-28: 46
- 2026-07-27: 46

## Links

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