DePix Gateway MCP Server

Non-custodial Pix payment gateway on Liquid: checkouts, products, status reads, and support tickets.

Remote serverstreamable-httpTypeScript

What is the DePix Gateway MCP server?

Connect DePix Gateway to Claude, Cursor or any other MCP client and it stops being a tab you switch to. Non-custodial Pix payment gateway on Liquid: checkouts, products, status reads, and support tickets. The depix gateway mcp server is what makes that connection.

What the server does

The MCP (Model Context Protocol) server for DePix App — the agent-facing interface of the non-custodial Pix↔DePix payment gateway and of a non-custodial Liquid wallet.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • create_checkout — POST /api/checkouts
  • get_checkout — GET /api/checkouts/:id
  • list_checkouts — GET /api/checkouts
  • simulate_checkout_payment — POST /api/checkouts/:id/simulate-payment
  • wait_for_checkout — GET /api/checkouts/:id (server-side loop)
  • create_product — POST /api/products
  • list_products — GET /api/products
  • get_product — GET /api/products/:id
  • update_product — PATCH /api/products/:id
  • activate_product — POST /api/products/:id/activate
  • deactivate_product — POST /api/products/:id/deactivate
  • set_featured_products — POST /api/products/featured

Credentials and setup notes

Configuration is passed through the environment: DEPIX_API_KEY, DEPIX_WALLET_PASSPHRASE, DEPIX_WALLET_DIR, DEPIX_TEST_KEY, VERCEL_URL, VERCEL_BRANCH_URL. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

Plenty of payments and commerce servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. DePix Gateway's toolset — create_checkout, get_checkout, list_checkouts and 11 more — is a fair guide to whether it matches your workflow. It is maintained by depixapp; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch DePix Gateway.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
create_checkoutPOST /api/checkouts
get_checkoutGET /api/checkouts/:id
list_checkoutsGET /api/checkouts
simulate_checkout_paymentPOST /api/checkouts/:id/simulate-payment
wait_for_checkoutGET /api/checkouts/:id (server-side loop)
create_productPOST /api/products
list_productsGET /api/products
get_productGET /api/products/:id
update_productPATCH /api/products/:id
activate_productPOST /api/products/:id/activate
deactivate_productPOST /api/products/:id/deactivate
set_featured_productsPOST /api/products/featured
list_product_checkoutsGET /api/products/:id/checkouts
get_accountGET /api/me

How to install the DePix Gateway MCP server

{
  "mcpServers": {
    "depix": {
      "command": "npx",
      "args": ["-y", "@depixapp/mcp"],
      "env": { "DEPIX_API_KEY": "sk_test_YOUR_KEY" }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
DEPIX_API_KEYCredential the server authenticates with.Yes
DEPIX_WALLET_PASSPHRASEConfiguration value read at startup.Optional
DEPIX_WALLET_DIRFilesystem location the server is allowed to use.Optional
DEPIX_TEST_KEYCredential the server authenticates with.Yes
VERCEL_URLEndpoint or connection string the server talks to.Yes
VERCEL_BRANCH_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use DePix Gateway to create checkout.
  • Use DePix Gateway to get checkout.
  • Use DePix Gateway to list checkouts.

Frequently asked questions

It connects DePix Gateway to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (create_checkout, get_checkout, list_checkouts, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with DePix Gateway directly.