Token导航 LogoToken导航TokenDH.com
开发external-servicegithub未标认证来源可访问许可证需确认审计异常

mcp-charge-pixMCP charge PIX 命令行

Agent Skill

mcp-charge-pix 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要围绕仓库状态、代码变更或协作事项进行整理时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

214

周安装

9

GitHub Stars

公开资料未说明

下载量

75
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:mcp-charge-pix(MCP charge PIX 命令行)
来源仓库:https://github.com/universokobana/kobana-agent-skills
仓库路径:skills/mcp-charge-pix
安装命令:
npx skills add https://github.com/universokobana/kobana-agent-skills --skill mcp-charge-pix
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/universokobana/kobana-agent-skills --skill mcp-charge-pix

简介

mcp-charge-pix 用于处理 GitHub 仓库、Issue、Pull Request 和代码协作信息,适合整理仓库状态与协作事项。

  • 适用于围绕代码变更、仓库状态或协作流程进行信息梳理的场景。
  • 通过 npx skills add 命令从指定 GitHub 仓库安装并使用。
  • 安装前需确认权限范围、维护状态及是否触发联网或文件操作。
  • 建议结合原始 README 和仓库内容进一步核验具体用法。

SKILL.md

Kobana Pix Creation via MCP

Create Pix charges using the kobana-mcp-charge MCP server tools.

Prerequisites

The kobana-mcp-charge MCP server must be configured. See MCP Server Setup below.

Available MCP Tools

Pix Accounts

ToolDescription
list_charge_pix_accountsList all Pix accounts
create_charge_pix_accountCreate a new Pix account
get_charge_pix_accountGet a specific Pix account

Pix Charges

ToolDescription
list_charge_pixList all Pix charges with filters
create_charge_pixCreate a new Pix charge
get_charge_pixGet a specific Pix charge
update_charge_pixUpdate a Pix charge
cancel_charge_pixCancel a Pix charge

Creating a Pix Charge

Step 1: Get the Pix Account UID

First, list available Pix accounts to get the pix_account_uid:

Use tool: list_charge_pix_accounts

Step 2: Create the Pix Charge

Use the create_charge_pix tool with the required parameters:

Instant Pix (e-commerce, delivery):

{
  "amount": 150.00,
  "pix_account_uid": "018df180-7208-727b-...",
  "expire_at": "2026-01-31T12:30:00-03:00",
  "registration_kind": "instant",
  "payer": {
    "document_number": "111.321.322-09",
    "name": "João da Silva"
  },
  "external_id": "order_12345"
}

Billing Pix (invoices, subscriptions):

{
  "amount": 500.00,
  "pix_account_uid": "018df180-7208-727b-...",
  "expire_at": "2026-02-10T23:59:59-03:00",
  "registration_kind": "billing",
  "payer": {
    "document_number": "12.345.678/0001-90",
    "name": "Company LTDA"
  },
  "fine_type": "percentage",
  "fine_percentage": 2.0,
  "interest_type": "monthly_percentage_calendar",
  "interest_percentage": 1.0,
  "revoke_days": 30
}

Step 3: Get the QR Code

The initial response may not contain the QR Code (asynchronous registration). To get it:

  1. Poll the charge using get_charge_pix with the returned UID
  2. Check registration_status: When it's confirmed, the qrcode field will be populated
Use tool: get_charge_pix
Parameters: { "uid": "019c0cbe-f018-717e-..." }

Common Parameters

Required

ParameterTypeDescription
amountdecimalValue in BRL (minimum 0.01)
pix_account_uidstringUUID of the Pix Account
expire_atstringExpiration date (ISO 8601)

Payer Data

ParameterTypeDescription
payer.document_numberstringCPF or CNPJ
payer.namestringFull name or company name
payer.emailstringEmail (optional)

Fine and Interest (Billing Pix only)

ParameterTypeDescription
fine_typestringpercentage or amount
fine_percentagedecimalFine percentage
interest_typestringSee interest types in reference
interest_percentagedecimalInterest percentage
revoke_daysintegerDays active after due date (required with fine/interest)

Tracking

ParameterTypeDescription
external_idstringExternal ID for tracking
custom_dataobjectCustom metadata (JSON)
tagsarrayTags for organization
messagestringMessage to payer (max 140 chars)

Pix Types

Instant Pix (registration_kind: "instant")

  • Short expiration (minutes to hours)
  • No interest, fines, or discounts
  • Use for: e-commerce, delivery, point-of-sale

Billing Pix (registration_kind: "billing")

  • Formal due date
  • Supports interest, fines, discounts
  • Stays active after due date (if revoke_days set)
  • Use for: monthly invoices, subscriptions

Status Reference

Charge Status

  • opened - Open (initial)
  • paid - Paid
  • overdue - Overdue
  • canceled - Canceled

Registration Status

  • pending - Waiting for registration
  • confirmed - Ready (has QR Code)
  • rejected / failed - Error

MCP Server Setup

Claude Desktop Configuration

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "kobana-charge": {
      "command": "npx",
      "args": ["-y", "kobana-mcp-charge"],
      "env": {
        "KOBANA_ACCESS_TOKEN": "your_access_token"
      }
    }
  }
}

Sandbox Environment

{
  "mcpServers": {
    "kobana-charge": {
      "command": "npx",
      "args": ["-y", "kobana-mcp-charge"],
      "env": {
        "KOBANA_ACCESS_TOKEN": "your_sandbox_token",
        "KOBANA_API_URL": "https://api-sandbox.kobana.com.br"
      }
    }
  }
}

Claude Code Configuration

Add to .mcp.json in your project root:

{
  "mcpServers": {
    "kobana-charge": {
      "command": "npx",
      "args": ["-y", "kobana-mcp-charge"],
      "env": {
        "KOBANA_ACCESS_TOKEN": "your_access_token"
      }
    }
  }
}

Remote MCP (Hosted)

{
  "mcpServers": {
    "kobana-charge": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.kobana.com.br/charge/mcp",
        "--header",
        "Authorization: Bearer your_access_token"
      ]
    }
  }
}

Best Practices

  1. Always get the Pix Account first - Use list_charge_pix_accounts to get available accounts
  2. Poll for QR Code - Use get_charge_pix to check registration status
  3. Use external_id - Track charges in your system
  4. Set revoke_days - Required for interest/fines on Billing Pix
  5. Validate CPF/CNPJ - Before creating the charge
  6. Test in sandbox - Configure sandbox environment first

Reference Documentation

See references/REFERENCE.md for complete MCP server documentation and all available tools.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

36.82%
按下载量换算28

Claude

31.42%
按下载量换算24

Cursor

16.98%
按下载量换算13

Gemini CLI

9.06%
按下载量换算7

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

未通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。来源安全扫描存在 warning/failed 结果,不能写成本站确认安全。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills