MCP Hub
Back to servers

mcpVaultix

A comprehensive MCP server enabling AI assistants to manage Vaultix Payment API operations including charges, customers, refunds, balances, and payouts.

Tools
32
Updated
Jan 4, 2026
Validated
Jan 9, 2026

Vaultix MCP Server

Model Context Protocol (MCP) server for the Vaultix Payment API. Allows Claude to interact directly with your Vaultix account.

Installation

Option 1: Install from GitHub

npm install -g github:VautlixDevelopment/mcpVaultix

Option 2: Clone and build locally

git clone https://github.com/VautlixDevelopment/mcpVaultix.git
cd mcpVaultix
npm install
npm run build

Configuration

1. Get your API Key

Get your API key from the Vaultix Dashboard.

2. Configure Claude Code

Add to your Claude Code MCP settings (~/.claude/claude_desktop_config.json):

{
  "mcpServers": {
    "vaultix": {
      "command": "npx",
      "args": ["-y", "github:VautlixDevelopment/mcpVaultix"],
      "env": {
        "VAULTIX_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

Or if installed locally:

{
  "mcpServers": {
    "vaultix": {
      "command": "node",
      "args": ["/path/to/mcpVaultix/dist/index.js"],
      "env": {
        "VAULTIX_API_KEY": "sk_live_your_key_here"
      }
    }
  }
}

3. Restart Claude Code

After saving the configuration, restart Claude Code to load the MCP server.

Available Tools

Charges (Cobranças)

ToolDescription
vaultix_create_chargeCreate a new charge (PIX, Card, Boleto)
vaultix_get_chargeGet a charge by ID
vaultix_list_chargesList all charges
vaultix_cancel_chargeCancel a pending charge

Customers (Clientes)

ToolDescription
vaultix_create_customerCreate a new customer
vaultix_get_customerGet a customer by ID
vaultix_list_customersList all customers
vaultix_update_customerUpdate a customer
vaultix_delete_customerDelete a customer

Refunds (Reembolsos)

ToolDescription
vaultix_create_refundCreate a refund for a charge
vaultix_get_refundGet a refund by ID
vaultix_list_refundsList all refunds

Balance (Saldo)

ToolDescription
vaultix_get_balanceGet current balance
vaultix_list_balance_transactionsList balance transactions

Products (Produtos)

ToolDescription
vaultix_create_productCreate a product
vaultix_get_productGet a product by ID
vaultix_list_productsList all products
vaultix_update_productUpdate a product
vaultix_delete_productDelete a product

Orders (Pedidos)

ToolDescription
vaultix_get_orderGet an order by ID
vaultix_list_ordersList all orders

Transactions (Transações)

ToolDescription
vaultix_get_transactionGet a transaction by ID
vaultix_list_transactionsList all transactions
vaultix_get_transactions_summaryGet transaction summary

Payment Links

ToolDescription
vaultix_create_payment_linkCreate a payment link
vaultix_get_payment_linkGet a payment link by ID
vaultix_list_payment_linksList all payment links
vaultix_deactivate_payment_linkDeactivate a payment link

Payouts (Saques)

ToolDescription
vaultix_create_payoutCreate a payout (PIX or bank transfer)
vaultix_get_payoutGet a payout by ID
vaultix_list_payoutsList all payouts
vaultix_cancel_payoutCancel a pending payout

Usage Examples

Once configured, you can ask Claude:

"Create a PIX charge for R$ 50,00 for customer João Silva (joao@email.com)"

"List all paid charges from this month"

"Create a payment link for R$ 100,00"

"What's my current balance?"

"Show me the transaction summary for the last 7 days"

Environment Variables

VariableDescription
VAULTIX_API_KEYYour Vaultix secret API key (sk_live_... or sk_test_...)

API Documentation

For more information about the Vaultix API, visit:

Support

License

MIT

Reviews

No reviews yet

Sign in to write a review