Skip to main content
VI

Vindi

v0.2.1API Key

Recurring billing engine with dunning, retry logic, and multi-gateway. Your agent manages subscription lifecycles and reduces churn.

20 tools1 env varsπŸ‡§πŸ‡· Brazilstable on npm

What your agent can do

Vindi gives your agent 20 tools it calls directly β€” pick the ones it needs, in Claude, Cursor, or any MCP client.

  • create_subscription β€” Create a recurring subscription in Vindi
  • get_subscription β€” Get subscription details by ID
  • list_subscriptions β€” List subscriptions with optional filters
Example call
// Your agent calls a tool directly β€” no glue code.
// CodeSpar's managed tier handles OAuth2, token rotation and rate limits.
const result = await session.call("create_subscription", { /* ... */ });

Install

terminal
$ npm install @codespar/mcp-vindi

Quickstart

Add this entry to your claude_desktop_config.json (or any MCP-compatible client config).

claude_desktop_config.json
{
  "mcpServers": {
    "vindi": {
      "command": "npx",
      "args": [
        "-y",
        "@codespar/mcp-vindi"
      ],
      "env": {
        "VINDI_API_KEY": "<your_vindi_api_key>"
      }
    }
  }
}

After restart, your agent can call any of the 20 tools below β€” try create_subscription first.

Environment variables Β· 1

Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.

VINDI_API_KEY
requiredsecret

API key for vindi

Available tools Β· 20

Each tool is independent β€” your agent loads only what it needs to reduce context and response time.

WRITEcreate_subscription
Create a recurring subscription in Vindi
READget_subscription
Get subscription details by ID
READlist_subscriptions
List subscriptions with optional filters
WRITEcreate_bill
Create a bill (charge) in Vindi
READget_bill
Get bill details by ID
READlist_bills
List bills with optional filters
WRITEcreate_customer
Create a customer in Vindi
READget_customer
Get customer details by ID

Compatible frameworks

MCP is a protocol β€” any framework that speaks it can mount this server.

Claude Agent SDKAnthropic
OpenAI AgentsOpenAI
Vercel AI SDKVercel
LangChainLangChain
LlamaIndexLlamaIndex
CrewAICrewAI
MastraMastra
Any MCP clientProtocol

Frequently asked questions

Run `npx -y @codespar/mcp-vindi` and add the config block above to your MCP client β€” Claude, Cursor, VS Code, or any MCP-compatible client. No build step, no SDK required. Prefer hosted? CodeSpar's managed tier runs it for you with auth handled.
Vindi β€” MCP server Β· 20 tools | CodeSpar