← 返回 Skills 市场
maay

Skill

作者 Maay · GitHub ↗ · v1.1.0
cross-platform ⚠ suspicious
854
总下载
0
收藏
1
当前安装
4
版本数
在 OpenClaw 中安装
/install brighty
功能描述
Banking interface for AI bots and automation. Get a bank account, issue a Mastercard, buy and sell crypto, send payments and invoices — all via API. Use when the user needs a bank account for a bot, wants to manage balances, make transfers, handle payouts, or operate cards.
使用说明 (SKILL.md)

Brighty Business & Freelance Banking

Give your bot a bank account. MCP server for Brighty banking API via mcporter — open accounts, issue Mastercard cards, buy and sell crypto, send SEPA/SWIFT payments. Works for both business and freelance accounts.

Getting Started

1. Sign up

Register at Brighty Business Portal. Both business and freelance accounts are supported — freelance accounts are particularly well-suited for bots and automation. The owner walks through the onboarding steps.

What you get by default:

  • Crypto account
  • EUR / USD / GBP fiat account for self-transfers only (no third-party payments)
  • Mastercard virtual card issuance (linked to crypto or fiat accounts)

Need to pay third parties (invoices, salaries, etc.)? Contact support to enable a full fiat account with outgoing payments:

The bank will set it up within a few days.

2. Get API key

Go to Account > Business and click Create API Token. Only the business owner can do this.

3. Configure

This skill includes config/mcporter.json which auto-registers the brighty MCP server. You just need to set the API key:

# Add to your environment (e.g. ~/.openclaw/.env)
BRIGHTY_API_KEY=your-api-key

Or configure manually:

mcporter config add brighty --command "npx -y github:Maay/brighty_mcp" --env BRIGHTY_API_KEY=your-api-key

Check connection: mcporter call brighty.brighty_status

Security:

  • Never store API key in SKILL.md, memory files, or chat history
  • Key lives only in env or config/mcporter.json (local, not pushed to git)

Authorization Notice

All actions performed through this skill are executed on behalf of the business owner. By using this skill, the owner confirms they authorize these operations.

Tool Reference

All tools called via mcporter call brighty.\x3Ctool> [params].

Accounts

  • brighty_list_accounts — list all accounts (optional: type=CURRENT|SAVING, holderId=UUID)
  • brighty_get_account id=UUID — account details
  • brighty_create_account name=X type=CURRENT|SAVING currency=EUR
  • brighty_terminate_account id=UUID — close account (must be zero balance)
  • brighty_get_account_addresses id=UUID — routing/crypto deposit addresses

Cards

  • brighty_list_cards — all business cards
  • brighty_get_card id=UUID
  • brighty_order_card customerId=UUID cardName=X sourceAccountId=UUID cardDesignId=UUID
  • brighty_freeze_card id=UUID / brighty_unfreeze_card id=UUID
  • brighty_set_card_limits id=UUID currency=EUR dailyLimit=1000 monthlyLimit=5000
  • brighty_list_card_designs / brighty_get_virtual_card_product

Transfers (between own accounts)

  • brighty_transfer_own sourceAccountId=UUID targetAccountId=UUID amount=100 currency=EUR
  • brighty_transfer_intent — preview exchange rate/fees before transfer (same params + side=SELL|BUY, sourceCurrency, targetCurrency)

Payouts (batch transfers to others)

  • brighty_list_payouts / brighty_get_payout id=UUID
  • brighty_create_payout name=X — create batch
  • brighty_create_internal_transfer — add Brighty-to-Brighty transfer to payout (by recipientAccountId or recipientTag)
  • brighty_create_external_transfer — add fiat (IBAN) or crypto transfer to payout
  • brighty_start_payout id=UUID — execute all transfers in batch

Team

Workflows

Pay an invoice

  1. Extract recipient name, IBAN, BIC, amount, currency, reference from invoice
  2. brighty_list_accounts — find source account
  3. brighty_create_payout name="Invoice payment"
  4. brighty_create_external_transfer with extracted details
  5. Confirm with user before brighty_start_payout

Mass salary payout

  1. Parse recipient list (names, IBANs, amounts)
  2. brighty_create_payout name="Salaries Feb 2026"
  3. Add each transfer via brighty_create_external_transfer or brighty_create_internal_transfer
  4. Show summary, confirm with user, then brighty_start_payout

Safety

  • Always confirm before executing payouts (brighty_start_payout)
  • Always confirm before terminating accounts
  • Show amounts and recipients clearly before any money movement
  • API docs: apidocs.brighty.app
安全使用建议
This skill is coherent for a Brighty MCP adapter, but take these precautions before installing: - Inspect the GitHub repo (Maay/brighty_mcp) referenced by the npx command — npx will download and execute whatever code is published there. Prefer a pinned release/version rather than the latest code if possible. - Confirm you trust the mcporter binary and run it in an isolated environment (separate account or container) if you plan to allow financial operations. - Keep BRIGHTY_API_KEY scoped to the minimum required privileges and never paste it into chat or skill files; follow the SKILL.md advice to keep it in a secure env file. - Require explicit human confirmation for any payouts/terminations (the SKILL.md already recommends this). - If you need higher assurance, ask the publisher for a signed release or repository commit hash to pin, or request an install spec that uses a verified package release. No regex scan findings were available because this is an instruction-only skill with no code files to analyze; that does not eliminate runtime risk from the npx-downloaded adapter.
功能分析
Type: OpenClaw Skill Name: brighty Version: 1.1.0 This skill is classified as suspicious due to a significant supply chain vulnerability. The `config/mcporter.json` and `SKILL.md` instruct the OpenClaw agent to execute `npx -y github:Maay/brighty_mcp`. This command fetches and runs code directly from an external GitHub repository at runtime, introducing a risk where a compromise of the `Maay/brighty_mcp` repository could lead to arbitrary code execution or financial fraud without requiring an update to the OpenClaw skill bundle itself. While the skill provides high-risk banking capabilities, it also includes explicit safety instructions in `SKILL.md` to confirm sensitive actions with the user, mitigating direct prompt-injection risks for financial transactions.
能力评估
Purpose & Capability
Name/description (Brighty banking) match the declared requirements: mcporter binary and BRIGHTY_API_KEY are exactly what a third‑party MCP adapter would need. No unrelated env vars, binaries, or config paths are requested.
Instruction Scope
SKILL.md confines actions to registering an MCP server and using mcporter call brighty.* commands. It instructs explicit flows (list accounts, create payouts, confirm before starting payouts). It does not ask to read unrelated files or additional env vars.
Install Mechanism
No formal install spec, but config/mcporter.json instructs mcporter to run `npx -y github:Maay/brighty_mcp`. That executes code fetched from a GitHub repo at runtime — a common pattern for adapters but still a dynamic code execution surface you should review. This is not inherently incoherent with the skill's purpose, but it is the primary operational risk.
Credentials
Only BRIGHTY_API_KEY is required and declared as the primary credential. This matches the documented API usage and the mcporter config which injects that env var. No excessive or unrelated credentials are requested.
Persistence & Privilege
Skill is user-invocable and not forced always-on. It does not request system-wide changes nor declare modifications to other skills. Autonomous invocation is allowed (platform default) but not combined with other concerning privileges.
如何使用
  1. 确保已安装 OpenClaw(本地或 Docker 部署)
  2. 在对话框中输入安装命令:/install brighty
  3. 安装完成后,直接呼叫该 Skill 的名称或使用 /brighty 触发
  4. 根据 Skill 的参数说明提供必要输入,即可获得结构化输出
版本历史
v1.1.0
Add config/mcporter.json for automatic MCP server registration
v1.0.2
Fix security warnings: add homepage and mcporter dependency
v1.0.1
Improve description: highlight bot banking capabilities
v1.0.0
Initial release
元数据
Slug brighty
版本 1.1.0
许可证
累计安装 1
当前安装数 1
历史版本数 4
常见问题

Skill 是什么?

Banking interface for AI bots and automation. Get a bank account, issue a Mastercard, buy and sell crypto, send payments and invoices — all via API. Use when the user needs a bank account for a bot, wants to manage balances, make transfers, handle payouts, or operate cards. 它是一个面向 Claude Code / OpenClaw 的 AI Agent Skill 插件,目前累计下载 854 次。

如何安装 Skill?

在 OpenClaw 或 Claude Code 对话框中运行命令「/install brighty」即可一键安装,无需额外配置。

Skill 是免费的吗?

是的,Skill 完全免费(开源免费),可自由下载、安装和使用。

Skill 支持哪些平台?

Skill 跨平台运行,可在任意部署了 OpenClaw / Claude Code 的环境中使用(cross-platform)。

谁开发了 Skill?

由 Maay(@maay)开发并维护,当前版本 v1.1.0。

💬 留言讨论