Big News: Socket raises $60M Series C at a $1B valuation to secure software supply chains for AI-driven development.Announcement
Sign In

@codespar/mcp-vindi

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@codespar/mcp-vindi

MCP server for Vindi — recurring billing, subscriptions, invoices

latest
npmnpm
Version
0.2.1
Version published
Maintainers
1
Created
Source

@codespar/mcp-vindi

MCP server for Vindi — recurring billing, subscriptions, and payment plans

npm License: MIT

Quick Start

Claude Desktop

Add to ~/.config/claude/claude_desktop_config.json:

{
  "mcpServers": {
    "vindi": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-vindi"],
      "env": {
        "VINDI_API_KEY": "your-key"
      }
    }
  }
}

Claude Code

claude mcp add vindi -- npx @codespar/mcp-vindi

Cursor / VS Code

Add to .cursor/mcp.json or .vscode/mcp.json:

{
  "servers": {
    "vindi": {
      "command": "npx",
      "args": ["-y", "@codespar/mcp-vindi"],
      "env": {
        "VINDI_API_KEY": "your-key"
      }
    }
  }
}

Tools (20)

ToolPurpose
create_subscriptionCreate a recurring subscription in Vindi
get_subscriptionGet subscription details by ID
list_subscriptionsList subscriptions with optional filters
create_billCreate a bill (charge) in Vindi
get_billGet bill details by ID
list_billsList bills with optional filters
create_customerCreate a customer in Vindi
get_customerGet customer details by ID
create_planCreate a billing plan in Vindi
list_plansList available billing plans
update_customerUpdate a customer's details
create_productCreate a product (catalog item that can be attached to plans or bills)
list_productsList products in the catalog
cancel_subscriptionCancel a subscription immediately
reactivate_subscriptionReactivate a canceled subscription
cancel_billCancel a pending bill
charge_billRetry charging a pending bill (runs the billing workflow)
refund_chargeRefund a charge (full or partial).
create_payment_profileCreate a payment profile (tokenized card / saved payment method) for a customer
list_payment_profilesList payment profiles, optionally filtered by customer

Authentication

Vindi uses Basic Auth with the API key as username and empty password.

Sandbox / Testing

Vindi provides a sandbox via the dashboard. Use a sandbox API key for testing.

Get your credentials

  • Go to Vindi
  • Create an account
  • Navigate to settings and generate your API key
  • Set the VINDI_API_KEY environment variable

Environment Variables

VariableRequiredDescription
VINDI_API_KEYYesAPI key from Vindi dashboard

Roadmap

v0.2 (planned)

  • cancel_subscription — Cancel an active subscription
  • update_subscription — Update subscription details
  • list_payment_profiles — List payment profiles for a customer
  • create_discount — Create a discount for a subscription
  • get_charges — Get charge details with filters

v0.3 (planned)

  • batch_bills — Create multiple bills in a single request
  • financial_reports — Generate financial summary reports

Want to contribute? Open a PR or request a tool.

Enterprise

Need governance, budget limits, and audit trails for agent payments? CodeSpar Enterprise adds policy engine, payment routing, and compliance templates on top of these MCP servers.

License

MIT

Keywords

mcp

FAQs

Package last updated on 25 Apr 2026

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts