X402 Monetize
БесплатноНе проверенPlug-and-play monetization SDK for MCP tools and TypeScript APIs. Monetize AI agent workflows instantly with x402 V2 micropayments and Base revenue splits.
Описание
Plug-and-play monetization SDK for MCP tools and TypeScript APIs. Monetize AI agent workflows instantly with x402 V2 micropayments and Base revenue splits.
README
Instant x402 V2 monetization SDK for Model Context Protocol (MCP) tools, Hono HTTP APIs, Cloudflare Monetization Gateway, and Base.
@golfgolfgolf200/x402-monetize allows developers to monetize any MCP tool or HTTP API route in a few lines of code. It automatically generates standard x402 V2 HTTP payment challenges, verifies payment signatures, enforces platform fee splits, and prevents signature replay attacks.
Features
- x402 V2 Compliant: Standardized payment challenge headers (
PAYMENT-REQUIRED,PAYMENT-SIGNATURE,PAYMENT-RESPONSE). - Base Network Native: Uses USDC on Base mainnet (
eip155:8453) by default. - Automated Platform Fee Split: Configurable fee split in basis points (e.g. 50 BPS = 0.5%) routed directly during facilitator settlement.
- MCP Native Decorator: Seamlessly wraps tools written for the Model Context Protocol.
- Replay Protection: Includes built-in
MemoryNonceStoreand distributedRedisNonceStoredrivers to prevent double-spending or signature reuse. - Edge Compatible: Zero Node.js-only API dependencies; runs seamlessly on Cloudflare Workers, Vercel Edge, Node.js (18+), and Deno.
Installation
npm install golfgolfgolf200/x402-monetize
Usage Case 1: Monetizing Hono HTTP APIs
import { Hono } from "hono";
import { monetize } from "@golfgolfgolf200/x402-monetize";
const app = new Hono();
app.use(
"/api/data",
monetize({
price: "0.01", // $0.01 USDC
payTo: "0xYourMerchantWalletAddress",
platformWallet: "0xYourPlatformTreasuryWallet",
platformFeeBps: 50 // 0.5% cut
})
);
app.get("/api/data", (c) => c.json({ status: "success", content: "Monetized Payload" }));
export default app;
Usage Case 2: Monetizing MCP (Model Context Protocol) Tools
import { createMonetizedMCPTool } from "@golfgolfgolf200/x402-monetize";
const originalTool = {
name: "web_scraper",
description: "Extract clean Markdown content from URLs",
inputSchema: { type: "object", properties: { url: { type: "string" } } },
handler: async ({ url }: { url: string }) => {
return { markdown: "# Cleaned Markdown Content" };
}
};
export const monetizedTool = createMonetizedMCPTool(originalTool, {
price: "0.02", // $0.02 USDC
payTo: "0xYourMerchantWalletAddress",
platformWallet: "0xYourPlatformTreasuryWallet",
platformFeeBps: 50
});
Usage Case 3: Distributed Nonce Locking with Redis / Upstash
import { Redis } from "@upstash/redis";
import { monetize, RedisNonceStore } from "@golfgolfgolf200/x402-monetize";
const redis = new Redis({
url: process.env.UPSTASH_REDIS_REST_URL!,
token: process.env.UPSTASH_REDIS_REST_TOKEN!
});
app.use(
"/api/v1/compute",
monetize({
price: "0.10",
payTo: "0xYourMerchantWalletAddress",
platformWallet: "0xYourPlatformTreasuryWallet",
nonceStore: new RedisNonceStore(redis),
nonceTtlSeconds: 300
})
);
License: MIT
Установка X402 Monetize
У этого сервера нет опубликованного пакета — он собирается из исходников. Открой репозиторий и следуй инструкции в README.
▸ github.com/golfgolfgolf200/x402-monetizeFAQ
X402 Monetize MCP бесплатный?
Да, X402 Monetize MCP бесплатный — установка в пару кликов через Unyly без оплаты.
Нужен ли API-ключ для X402 Monetize?
Нет, X402 Monetize работает без API-ключей и переменных окружения.
X402 Monetize — hosted или self-hosted?
Доступен hosted-вариант: Unyly запускает сервер в облаке, локальная установка не обязательна.
Как установить X402 Monetize в Claude Desktop, Claude Code или Cursor?
Открой X402 Monetize на unyly.org, выбери вкладку своего клиента (Claude Desktop, Claude Code, Cursor) и нажми Install — конфиг сгенерируется автоматически, без правки JSON.
Похожие MCP
Fetch
Web content fetching and conversion for efficient LLM usage.
AWS KB Retrieval
Retrieval from AWS Knowledge Base using Bedrock Agent Runtime.
автор: modelcontextprotocolSpring AI MCP Server
Provides auto-configuration for setting up an MCP server in Spring Boot applications.
llm-analysis-assistant
A very streamlined mcp client that supports calling and monitoring stdio/sse/streamableHttp, and can also view request responses through the /logs page. It also
автор: xuzexin-hzCompare X402 Monetize with
Не уверен что выбрать?
Найди свой стек за 60 секунд
Автор?
Embed-бейдж для README
Похожее
Все в категории ai
