EcosystemEcosystem Tools

Ecosystem Tools

Complementary tools and MCP servers for the T402 ecosystem.

WDK MCP Toolkit

Tether WDK MCP Toolkit is a general-purpose wallet MCP server with 30+ tools. It complements T402’s payment-focused MCP tools.

Capability Comparison

CapabilityT402 MCPWDK MCP Toolkit
Payment protocol (402)✅ Core
Wallet management✅ WDK tools✅ Core
Token transfers
Swaps✅ + quotes
Bridges
Price feeds
Lending/borrowing
Fiat on/off-ramp
ERC-8004 identity
Gasless payments

Using Together

You can run both T402 and WDK MCP servers together in Claude Desktop. Each provides distinct capabilities:

  • T402 MCP — Payment negotiation, 402 protocol, ERC-8004 identity, gasless transactions
  • WDK MCP Toolkit — Wallet management, DeFi operations, fiat ramps

Example claude_desktop_config.json:

{
  "mcpServers": {
    "t402": {
      "command": "npx",
      "args": ["@t402/mcp"],
      "env": {
        "T402_PRIVATE_KEY": "0x...",
        "T402_WDK_SEED_PHRASE": "your twelve word seed phrase here"
      }
    },
    "wdk": {
      "command": "node",
      "args": ["/path/to/wdk-mcp-toolkit/dist/index.js"],
      "env": {
        "WDK_SEED_PHRASE": "your twelve word seed phrase here"
      }
    }
  }
}

When using both servers, the AI agent can combine capabilities — for example, using WDK for wallet balance checks and T402 for making 402 payments.

Complementary Workflows

WorkflowT402 MCPWDK MCP Toolkit
Check wallet balanceget_balancesgetBalances
Pay for API accessmake_payment
Swap tokensexecute_swapswap
Bridge cross-chainexecute_bridgebridge
Verify agent identityverify_erc8004
Check lending ratesgetLendingRates
On-ramp fiatonRamp

OpenClaw WDK Skills

OpenClaw provides Claude Code skills for WDK wallet operations. These are interactive /slash commands that guide developers through wallet management tasks.

Available Skills

SkillDescription
/wdk-walletCreate and manage WDK wallets
/wdk-transferSend token transfers
/wdk-swapExecute token swaps
/wdk-bridgeBridge tokens cross-chain

T402 Skills

T402 also provides Claude Code skills:

SkillDescription
/pmProject manager for T402 development
/cross-sdk-checkVerify cross-SDK consistency
/releaseGuided release workflow

Third-Party Implementations

ProjectDescriptionLink
x402-usdt0Cross-chain USDT0 payment demoGitHub
SemanticPayThird-party x402 facilitatorWebsite

Tether Ecosystem

ProjectDescriptionLink
USDT0Omnichain USDT with EIP-3009tether.to/usdt0
Tether WDKWallet Development Kitwdk.tether.to
WDK MCP ToolkitMCP server for wallet operationsGitHub

Standards

StandardPurposeRelevance
EIP-3009Transfer with authorizationCore EVM payment mechanism
ERC-8004Native asset transferAgent identity verification
MCPModel Context ProtocolAI agent tool interface
A2AAgent-to-Agent ProtocolMulti-agent payment coordination

Building Custom Tools

T402’s modular architecture supports custom integrations:

import { createClient } from '@t402/core';
import { evmMechanism } from '@t402/evm-exact';
 
// Create a custom payment client
const client = createClient({
  mechanisms: [evmMechanism],
  facilitatorUrl: 'https://facilitator.t402.io',
});
 
// Use in your own MCP server, API, or automation
const result = await client.pay(paymentRequirements, wallet);

See the MCP Integration guide for building custom MCP tools with T402.