Clawallex MCP Server

MCP Server for Clawallex payment API - Pay for anything with USDC virtual cards

Local serverstdio

What is the Clawallex MCP server?

Clawallex MCP server exists for a simple reason — assistants are far more useful when they can act on Clawallex directly instead of describing what you should do. MCP Server for Clawallex payment API - Pay for anything with USDC virtual cards.

What you get

MCP Server for the Clawallex payment API. Pay for anything with USDC — Clawallex converts your stablecoin balance into virtual cards that work at any online checkout.

What the assistant can call

Once Clawallex is connected, these are the calls the assistant has available:

  • OpenCode — The OpenCode tool exposed by this server
  • Authentication — The Authentication tool exposed by this server

Setting it up

@clawallex/mcp-server on npm is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Configuration and credentials

You will need 4 environment variables: CLAWALLEX_API_KEY, CLAWALLEX_API_SECRET, CLAWALLEX_BASE_URL, CLAWALLEX_CLIENT_ID. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Node.js >= 22

Choosing this one

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. Clawallex's toolset — OpenCode, Authentication — is a fair guide to whether it matches your workflow. It is maintained by Clawallex-Tech; 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.

Before you rely on it

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the clawallex mcp server does with a few real requests.

Available tools

ToolWhat it does
OpenCodeThe OpenCode tool exposed by this server.
AuthenticationThe Authentication tool exposed by this server.

How to install the Clawallex MCP server

{
  "mcpServers": {
    "clawallex": {
      "command": "npx",
      "args": ["-y", "@clawallex/mcp-server"],
      "env": {
        "CLAWALLEX_API_KEY": "your-value",
        "CLAWALLEX_API_SECRET": "your-value",
        "CLAWALLEX_BASE_URL": "your-value",
        "CLAWALLEX_CLIENT_ID": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js >= 22
VariableDescriptionRequired
CLAWALLEX_API_KEYCredential the server authenticates with.Yes
CLAWALLEX_API_SECRETCredential the server authenticates with.Yes
CLAWALLEX_BASE_URLEndpoint or connection string the server talks to.Yes
CLAWALLEX_CLIENT_IDConfiguration value read at startup.Optional

Example prompts to try

  • Use Clawallex to OpenCode.
  • Use Clawallex to Authentication.

Frequently asked questions

It connects Clawallex to MCP-compatible AI assistants such as Claude and Cursor, exposing 2 tools (OpenCode, Authentication) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Clawallex directly.