AI42-MCP X402 Payment Server

AI42-MCP X402 Payment Server

Enables fetching data from web URLs with automatic X402 payment handling using Solana, including payment tracking, balance checking, and configurable spending limits.

Category
访问服务器

README

AI42 MCP Server

<div align="center">

X402 Payment MCP Server for Claude Desktop

npm version License: MIT TypeScript

Quick StartFeaturesInstallationUsage

</div>


Overview

AI42 MCP Server enables Claude Desktop to automatically handle web requests with X402 payments. Fetch data from any URL and seamlessly process cryptocurrency payments when required (402 status). Includes payment tracking, balance checking, and spending limits.

Features

  • Automatic Payment Handling: Transparent X402 payment processing on 402 responses
  • GET & POST Support: Full HTTP method support for API interactions
  • Payment Management: Track history, check balance, set spending limits
  • Solana Integration: Built on Solana devnet/mainnet
  • Type-safe: Full TypeScript support
  • Zero Configuration: Works out of the box with Claude Desktop

Available Tools

Tool Description
fetch-with-payment Fetch data from URLs with automatic payments
get-balance Check wallet SOL balance
get-payment-history View all payments made during session
set-payment-limit Set maximum spending limit per request

Installation

Prerequisites

  • Node.js 18+
  • Solana wallet private key (base58 format)
  • Claude Desktop

Quick Install

No manual installation needed! Just configure Claude Desktop:

Add to claude_desktop_config.json:

Windows:

{
  "mcpServers": {
    "x402-payment": {
      "command": "npx",
      "args": ["-y", "@ai42/mcp"],
      "env": {
        "SOLANA_PRIVATE_KEY": "your_base58_private_key_here"
      }
    }
  }
}

macOS:

{
  "mcpServers": {
    "x402-payment": {
      "command": "npx",
      "args": ["-y", "@ai42/mcp"],
      "env": {
        "SOLANA_PRIVATE_KEY": "your_base58_private_key_here"
      }
    }
  }
}

Linux:

{
  "mcpServers": {
    "x402-payment": {
      "command": "npx",
      "args": ["-y", "@ai42/mcp"],
      "env": {
        "SOLANA_PRIVATE_KEY": "your_base58_private_key_here"
      }
    }
  }
}

Config File Locations

Platform Path
Windows %APPDATA%\Claude\claude_desktop_config.json
macOS ~/Library/Application Support/Claude/claude_desktop_config.json
Linux ~/.config/Claude/claude_desktop_config.json

After adding config: Restart Claude Desktop!


Quick Start

Getting Your Private Key

Generate Solana Keypair:

solana-keygen new --outfile ~/.config/solana/id.json
solana-keygen pubkey ~/.config/solana/id.json

Export Private Key (base58 format):

cat ~/.config/solana/id.json
# Copy the array, then convert to base58

⚠️ Never commit private keys to version control!

First Request

Once configured and Claude Desktop is restarted, simply ask:

You: Check my wallet balance

Claude: [Uses get-balance tool] Your balance is 2.5 SOL on devnet

Usage

Example Conversations

Fetch Data from URL

You: Get data from https://api.example.com/endpoint

Claude: [Uses fetch-with-payment] Here's the data from the API...

Fetch with Payment

You: Fetch https://paid-service.com/premium-data

Claude: [Uses fetch-with-payment] Payment of 0.05 SOL made successfully. 
Here's the premium data...

POST Request

You: POST this data to https://api.example.com: {"message": "hello"}

Claude: [Uses fetch-with-payment] Successfully posted. Response: {...}

Check Balance

You: What's my SOL balance?

Claude: [Uses get-balance] Your current balance:
- Balance: 2.5 SOL
- Network: devnet
- Address: 7xK...abc

Set Payment Limit

You: Set payment limit to 0.1 SOL

Claude: [Uses set-payment-limit] Payment limit set to 0.1 SOL. 
Any request exceeding this amount will be rejected.

View Payment History

You: Show my payment history

Claude: [Uses get-payment-history] 
Total payments: 3
Total spent: 0.15 SOL

Recent payments:
1. 0.05 SOL to xyz...abc at 2025-11-12T10:30:00Z
2. 0.08 SOL to def...123 at 2025-11-12T11:45:00Z
3. 0.02 SOL to ghi...789 at 2025-11-12T12:15:00Z

Tool Reference

1. fetch-with-payment

Fetch data from any URL with automatic payment handling.

Parameters:

  • url (string, required): URL to fetch
  • method (string, optional): HTTP method - "GET" or "POST" (default: "GET")
  • body (string, optional): JSON string for POST requests

Returns:

{
  success: boolean;
  data: any;
  payment_made: boolean;
  payment_amount: number; // in SOL
}

Example:

Get data from https://api.weather.com/current

2. get-balance

Check current SOL balance in your wallet.

Parameters: None

Returns:

{
  balance: number;      // SOL amount
  unit: "SOL";
  network: string;      // "devnet" or "mainnet"
  address: string;      // Public key
}

Example:

Check my wallet balance

3. get-payment-history

View all payments made during the current session.

Parameters:

  • limit (number, optional): Maximum records to return (default: all)

Returns:

{
  total_payments: number;
  total_spent: number;     // Total SOL spent
  records: Array<{
    url: string;
    amount: number;        // in SOL
    recipient: string;
    timestamp: string;
    signature: string;
  }>;
}

Example:

Show last 5 payments

4. set-payment-limit

Set maximum spending limit per request. Set to 0 to remove limit.

Parameters:

  • limit (number, required): Maximum SOL amount (0 to remove)

Returns:

{
  message: string;
  current_limit: number | null;
}

Example:

Don't let me spend more than 0.05 SOL per request

How It Works

The X402 Payment Flow

  1. Request: Claude makes a request to a URL
  2. 402 Response: If the endpoint requires payment, it returns HTTP 402
  3. Automatic Payment: The MCP server automatically processes the payment using your Solana wallet
  4. Retry: The request is retried with payment proof
  5. Success: Data is returned to Claude

Payment Tracking

  • All payments are logged in-memory during the session
  • Track amounts, recipients, timestamps, and transaction signatures
  • View history anytime with get-payment-history

Spending Limits

  • Set a maximum amount per request to prevent overspending
  • Requests exceeding the limit are automatically rejected
  • Remove limits by setting to 0

Advanced Usage

Testing with MCP Inspector

For development and debugging:

# Install globally or use npx
npx @modelcontextprotocol/inspector npx @ai42/mcp

This opens a web UI where you can:

  • See all registered tools
  • Test tool calls with custom inputs
  • View request/response JSON
  • Debug payment flows

Environment Variables

If running locally (not via npx in Claude config):

# .env file
SOLANA_PRIVATE_KEY=your_base58_private_key_here

Network Configuration

Currently supports:

  • Solana Devnet (default): For testing with test SOL
  • Solana Mainnet: For production (update in source)

Security Best Practices

Private Key Safety

DO:

  • Store private keys in environment variables
  • Use separate wallets for testing (devnet) and production (mainnet)
  • Set reasonable payment limits
  • Regularly check payment history

DON'T:

  • Commit private keys to git
  • Share private keys in chat or screenshots
  • Use production wallets without payment limits
  • Ignore payment history

Payment Limits

Recommended limits based on usage:

Use Case Recommended Limit
Testing 0.01 SOL
Light Usage 0.1 SOL
Regular Usage 0.5 SOL
Heavy Usage 1.0 SOL

Troubleshooting

"Bad secret key size" error

Your private key format is incorrect. Ensure it's in base58 format:

# Convert from JSON array to base58
node -e "console.log(require('bs58').encode(Buffer.from([your,array,here])))"

"Module not found" error

Clear npx cache and reinstall:

npx clear-npx-cache
# Restart Claude Desktop

"Payment failed" error

Check:

  1. Wallet has sufficient balance (get-balance)
  2. Network connectivity to Solana RPC
  3. Private key is valid
  4. Payment limit not exceeded

Tool not appearing in Claude

  1. Verify config file location and syntax
  2. Restart Claude Desktop completely
  3. Check Claude Desktop logs for errors
  4. Test with MCP Inspector

Development

Local Development

# Clone repository
git clone https://github.com/Kishore-MK/ai42-mcp
cd ai42-mcp

# Install dependencies
npm install

# Create .env file
echo "SOLANA_PRIVATE_KEY=your_key" > .env

# Build
npm run build

# Test locally
node dist/index.js

Project Structure

ai42-mcp/
├── src/
│   ├── index.ts          # Main MCP server
|   ├── payment.ts        # Payment client wrapper
│   └── types.ts          # Types file
├── dist/                 # Compiled JavaScript
├── package.json
├── tsconfig.json
└── README.md

Contributing

Contributions welcome! Please feel free to submit a Pull Request.

  1. Fork the repository
  2. Create your feature branch (git checkout -b feature/amazing-feature)
  3. Commit your changes (git commit -m 'Feat: Add amazing feature')
  4. Push to the branch (git push origin feature/amazing-feature)
  5. Open a Pull Request

Links


License

MIT License - see LICENSE file for details


Acknowledgments

Built with:


<div align="center">

Made with ❤️ by keyaru

NPMGitHubIssues

</div>

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选