Quick Start

Two ways to run Wasit, depending on whether a person or an agent is driving.

From a terminal

bash
# run once, no install
npx @wasit-dev/cli test --target https://your-service.example.com

# or install globally
npm install -g @wasit-dev/cli
wasit test --target https://your-service.example.com

test runs the x402 checks. mpp-charge and mpp-channel run the MPP checks — see the CLI Guide for every subcommand and flag.

From Claude Code (MCP)

bash
claude mcp add --transport stdio wasit \
  --env MPP_STELLAR_NETWORK=stellar:testnet \
  --env STELLAR_PRIVATE_KEY=S... \
  -- npx -y @wasit-dev/server

This registers the MCP server so an agent can call Wasit's tools directly — see the MCP Guide for what each tool checks, and Configuration for where STELLAR_PRIVATE_KEY and the other environment values come from.