AI Skill Hub 强烈推荐:Yolfi代理工具包 是一款优质的MCP工具。AI 综合评分 8.0 分,在同类工具中表现稳健。如果你正在寻找可靠的MCP工具解决方案,这是一个值得深入了解的选择。
Yolfi Agent Kit SDK、CLI和MCP服务器,用于AI编码代理
Yolfi代理工具包 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
Yolfi Agent Kit SDK、CLI和MCP服务器,用于AI编码代理
Yolfi代理工具包 是一款遵循 MCP(Model Context Protocol)标准协议的 AI 工具扩展。通过 MCP 协议,它可以让 Claude、Cursor 等主流 AI 客户端直接访问和操作外部工具、数据源和服务,实现 AI 能力的无缝扩展。无论是文件操作、数据库查询还是 API 调用,都可以通过自然语言在 AI 对话中直接触发,极大提升生产效率。
# 方式一:通过 Claude Code CLI 一键安装
claude skill install https://github.com/yolfinance/yolfi-agent
# 方式二:手动配置 claude_desktop_config.json
{
"mcpServers": {
"yolfi-----": {
"command": "npx",
"args": ["-y", "yolfi-agent"]
}
}
}
# 配置文件位置
# macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
# Windows: %APPDATA%/Claude/claude_desktop_config.json
# 安装后在 Claude 对话中直接使用 # 示例: 用户: 请帮我用 Yolfi代理工具包 执行以下任务... Claude: [自动调用 Yolfi代理工具包 MCP 工具处理请求] # 查看可用工具列表 # 在 Claude 中输入:"列出所有可用的 MCP 工具"
// claude_desktop_config.json 配置示例
{
"mcpServers": {
"yolfi_____": {
"command": "npx",
"args": ["-y", "yolfi-agent"],
"env": {
// "API_KEY": "your-api-key-here"
}
}
}
}
// 保存后重启 Claude Desktop 生效
AI agent payment integration for crypto checkout. Yolfi Agent Kit is a JSON-first SDK, CLI, Agent Skill, and MCP server that lets AI coding agents add stablecoin checkout, payment links, payment status checks, webhook verification, and webhook-based access logic to applications through Yolfi.
Use @yolfi/agent when Codex, Claude Code, Cursor, OpenClaw, an MCP host, or a custom AI agent can build the product but still needs a reliable payment API to register a Yolfi workspace, create a paylink, configure webhooks, and verify crypto payment status without sending the user through manual dashboard setup.
Install in a project:
npm install @yolfi/agent
Or run without installing:
npx -y @yolfi/agent help
Start the stdio MCP server:
npx -y @yolfi/agent mcp
For local development inside this repository:
node packages/yolfi-agent/src/cli.js help
Check the workspace linked to the API key:
yolfi auth:status
Configure settlement wallets after the user provides wallet addresses:
yolfi settlement:configure --json examples/organization.settlement.json
Configure one or more webhook endpoints. Deliveries, retries, and signing secrets are independent. Save the secret returned when each endpoint is created; it is used to verify X-Yolfi-Signature and is not returned by list operations:
yolfi webhooks:add \
--name "Application" \
--url https://example.com/api/yolfi/webhook \
--adapter NONE
yolfi webhooks:add \
--name "Talivia analytics" \
--url https://talivia.example/api/payments/yolfi/<websiteId>/webhook \
--adapter NONE
yolfi webhooks:list
Use webhooks:update --id <endpointId> --json endpoint.json to edit or enable/disable an endpoint. webhooks:remove requires --confirm; endpoints with delivery history are disabled rather than deleting their audit relationship.
List existing paylinks before creating duplicates:
yolfi paylinks:list --page 1 --rows 10
Create a one-time payment link:
yolfi paylinks:create --json examples/paylink.one-time.json
Create a public payment invoice from a paylink:
yolfi payments:create --json examples/payment.create.json
Besides the required paylinkId, network, and symbol, the invoice body accepts optional customerEmail, clientReferenceId (your internal customer/order reference, returned as customer.clientReferenceId in webhooks), customerName, customerPhone, customerDateOfBirth, customerAddress, subscriptionId, and metadata.
Use a stable customer or application-user id for clientReferenceId when webhook handlers must resolve subscription ownership. Native (NONE) payloads expose it as data.customer.clientReferenceId; Stripe-compatible Checkout Session payloads use data.object.client_reference_id, Stripe-compatible Invoice and Subscription payloads use data.object.metadata.client_reference_id, and Lemon Squeezy-compatible payloads use meta.custom_data.client_reference_id.
Check payment status:
yolfi payments:status --id <paymentId>
Every CLI command prints JSON so agents can parse results without scraping terminal text.
Yolfi Agent Kit does not create a second /api/agent/* API. It maps agent actions to the current Yolfi API:
| Agent action | Backend endpoint | Auth |
|---|---|---|
| Register Yolfi workspace | POST /api/auth/agent/register | public; no API key required |
| Check account | GET /api/private/organization/current | bearer API key |
| Configure organization, webhook, settlement wallets | PUT /api/private/organization/current | bearer API key |
| Get API key status | GET /api/private/organization/api-key | bearer API key or cookie |
| Create paylink | POST /api/private/paylinks/create | bearer API key |
| List paylinks | GET /api/private/paylinks | bearer API key |
| Get paylink | GET /api/private/paylinks/:id | bearer API key |
| Edit paylink | POST /api/private/paylinks/edit | bearer API key |
| Disable paylink | POST /api/private/paylinks/disable | bearer API key plus confirmation |
| Public paylink checkout info | GET /api/public/paylinks/:id | public |
| Create public payment invoice | POST /api/public/payments | public |
| Payment status | GET /api/public/payments/:id | public |
| Merchant transactions | GET /api/private/transactions | bearer API key |
import { YolfiClient } from "@yolfi/agent";
const yolfi = new YolfiClient({
apiKey: process.env.YOLFI_API_KEY,
});
const account = await yolfi.authStatus();
const paylink = await yolfi.createPaylink({
name: "Premium Download",
description: "One-time access to a digital product.",
type: "ONE_TIME",
price: "19",
currency: "USD",
collectEmail: true,
metadata: {
source: "agent",
productSlug: "premium-download",
},
});
console.log(account.success);
console.log(paylink.data?.id ?? paylink.id);
Agents can write a payload file and pass it to the CLI:
{
"name": "Premium Download",
"description": "One-time access to a digital product.",
"type": "ONE_TIME",
"price": "19",
"currency": "USD",
"collectEmail": true,
"metadata": {
"source": "agent",
"productSlug": "premium-download"
}
}
Then run:
yolfi paylinks:create --json ./paylink.json
Agents should keep the returned paylink ID in env/config for the target app and use Yolfi public payment endpoints for customer-facing checkout and status polling.
Developers and agent builders often look for:
Yolfi Agent Kit is the package entry point for those workflows.
一个不错的开源MCP工具,具有较高的实用价值
AI Skill Hub 为第三方内容聚合平台,本页面信息基于公开数据整理,不对工具功能和质量作任何法律背书。
建议在沙箱或测试环境中充分验证后,再部署至生产环境,并做好必要的安全评估。
✅ MIT 协议 — 最宽松的开源协议之一,可自由商用、修改、分发,仅需保留版权声明。
总体来看,Yolfi代理工具包 是一款质量优秀的MCP工具,在同类工具中具备一定竞争力。AI Skill Hub 将持续追踪其更新动态,建议收藏备用,结合自身场景选择合适时机引入使用。
| 原始名称 | yolfi-agent |
| Topics | ai-agentscrypto-paymentsjavascript |
| GitHub | https://github.com/yolfinance/yolfi-agent |
| License | MIT |
| 语言 | JavaScript |
收录时间:2026-07-13 · 更新时间:2026-07-13 · License:MIT · AI Skill Hub 不对第三方内容的准确性作法律背书。
选择 Agent 类型,复制安装指令后粘贴到对应客户端