Recurring billing engine with dunning, retry logic, and multi-gateway. Your agent manages subscription lifecycles and reduces churn.
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 Vindiget_subscription β Get subscription details by IDlist_subscriptions β List subscriptions with optional filters// 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", { /* ... */ });$ npm install @codespar/mcp-vindiAdd this entry to your claude_desktop_config.json (or any MCP-compatible client config).
{
"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.
Required to authenticate the server. Stored encrypted when using CodeSpar managed hosting.
VINDI_API_KEYAPI key for vindi
Each tool is independent β your agent loads only what it needs to reduce context and response time.
create_subscriptionget_subscriptionlist_subscriptionscreate_billget_billlist_billscreate_customerget_customerMCP is a protocol β any framework that speaks it can mount this server.