skills$openclaw/proxy-pay-mcp
proxyhq2.6k

by proxyhq

proxy-pay-mcp – OpenClaw Skill

proxy-pay-mcp is an OpenClaw Skills integration for ai ml workflows. Proxy Pay MCP server integration for AI agent payments. Use Proxy's Model Context Protocol tools to create payment intents, provision virtual cards, check balances, and track transactions. Requires Proxy account and agent token.

2.6k stars1.1k forksSecurity L1
Updated Feb 7, 2026Created Feb 7, 2026ai ml

Skill Snapshot

nameproxy-pay-mcp
descriptionProxy Pay MCP server integration for AI agent payments. Use Proxy's Model Context Protocol tools to create payment intents, provision virtual cards, check balances, and track transactions. Requires Proxy account and agent token. OpenClaw Skills integration.
ownerproxyhq
repositoryproxyhq/proxy-pay-mcp
languageMarkdown
licenseMIT
topics
securityL1
installopenclaw add @proxyhq/proxy-pay-mcp
last updatedFeb 7, 2026

Maintainer

proxyhq

proxyhq

Maintains proxy-pay-mcp in the OpenClaw Skills directory.

View GitHub profile
File Explorer
2 files
.
_meta.json
279 B
SKILL.md
2.6 KB
SKILL.md

name: proxy-pay-mcp description: Proxy Pay MCP server integration for AI agent payments. Use Proxy's Model Context Protocol tools to create payment intents, provision virtual cards, check balances, and track transactions. Requires Proxy account and agent token.

Proxy Pay MCP Integration

Connect to Proxy Pay's MCP server for AI agent payments.

Option 1: NPX (Recommended)

{
  "mcpServers": {
    "proxy": {
      "command": "npx",
      "args": ["-y", "proxy-mcp-server"],
      "env": {
        "PROXY_AGENT_TOKEN": "your-agent-token"
      }
    }
  }
}

Option 2: HTTP Transport

{
  "mcpServers": {
    "proxy": {
      "transport": "http",
      "url": "https://api.useproxy.ai/mcp",
      "headers": {
        "Authorization": "Bearer your-agent-token"
      }
    }
  }
}

All 13 MCP Tools

User & Onboarding

  • proxy.user.get - Get user profile and account info
  • proxy.kyc.status - Check KYC verification status
  • proxy.kyc.link - Get KYC completion URL

Balance & Funding

  • proxy.balance.get - Get available spending power
  • proxy.funding.get - Get ACH/wire/crypto deposit instructions

Intents (Core Flow)

  • proxy.intents.create - Create payment intent (triggers card issuance)
  • proxy.intents.list - List all intents for this agent
  • proxy.intents.get - Get intent details including card info

Cards

  • proxy.cards.get - Get card details (masked PAN)
  • proxy.cards.get_sensitive - Get full card number, CVV, expiry

Transactions

  • proxy.transactions.list_for_card - List transactions for a card
  • proxy.transactions.get - Get detailed transaction info

Utility

  • proxy.tools.list - List all available Proxy tools

Core Payment Flow

proxy.balance.get → proxy.intents.create → proxy.cards.get_sensitive → Pay

Error Response Format

{
  "success": false,
  "error": {
    "code": "POLICY_REQUIRED",
    "message": "No policy configured",
    "hint": "Assign a policy to this agent",
    "context": "intents.create"
  }
}

Error Codes

CodeMeaning
POLICY_REQUIREDAgent needs policy assigned
ONBOARDING_INCOMPLETEComplete KYC first
INSUFFICIENT_BALANCEAdd funds
AGENT_NOT_FOUNDInvalid token
FORBIDDENPermission denied
INTENT_NOT_FOUNDBad intent ID
CARD_NOT_FOUNDBad card ID

Getting Started

  1. Sign up at useproxy.ai
  2. Complete KYC verification
  3. Create Agent in dashboard
  4. Assign a Policy (spending limits)
  5. Generate Agent Token
  6. Add MCP config above
README.md

No README available.

Permissions & Security

Security level L1: Low-risk skills with minimal permissions. Review inputs and outputs before running in production.

Requirements

  • OpenClaw CLI installed and configured.
  • Language: Markdown
  • License: MIT
  • Topics:

FAQ

How do I install proxy-pay-mcp?

Run openclaw add @proxyhq/proxy-pay-mcp in your terminal. This installs proxy-pay-mcp into your OpenClaw Skills catalog.

Does this skill run locally or in the cloud?

OpenClaw Skills execute locally by default. Review the SKILL.md and permissions before running any skill.

Where can I verify the source code?

The source repository is available at https://github.com/openclaw/skills/tree/main/skills/proxyhq/proxy-pay-mcp. Review commits and README documentation before installing.