Skills DirectorySkills Directory
SkillsLearnSecurityCategoriesDocsCommunityBlog
Sign InSubmit Skill
Skills Directory

Security-tested agent skills for Claude, coding agents, and AI workflows.

Directory

  • Browse Skills
  • All Skills A–Z
  • Claude Skills
  • Claude Code Skills
  • Agent Skills
  • Categories
  • Authors
  • Submit a Skill

Learn

  • Learn Hub
  • Install Claude Skills
  • Write SKILL.md
  • Skills vs MCP
  • Directories Compared

Security

  • Security
  • Methodology
  • Secure Claude Skills
  • Security Badges

Company

  • About
  • Community
  • Blog
  • API Docs
  • Advertise

2026 Skills Directory. All rights reserved.

ProTermsPrivacyRefunds
Back to skills

Banking Interface For Bots

ASecurity

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.

19 stars
0 votes
0 copies
0 views
Added 9/19/2026
ai-agentsgoswiftbashgitapisecurity

Works with

cliapimcp

Security Analysis

A100/100

Scanned 9/19/2026

Install to Claude Code

$npx -y skills add rondoflow/rondoflow --skill banking-interface-for-bots --agent claude-code

Installs into .claude/skills of the current project.

Are you the author of Banking Interface For Bots?

Add the live security badge to your README — it updates automatically with every re-scan.

Security grade badge for Banking Interface For Bots
[![Security: A — Skills Directory](https://www.skillsdirectory.com/api/skills/rondoflow-banking-interface-for-bots/badge)](https://www.skillsdirectory.com/skills/rondoflow-banking-interface-for-bots)

More formats (shields.io, HTML) on the badges page.

Download with Pro
Files
SKILL.md
---
name: banking-interface-for-bots
description: "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."
category: "Finance & Crypto"
author: community
version: "1.1.0"
icon: coins
---

# Brighty Business & Freelance Banking

Give your bot a bank account. MCP server for [Brighty](https://brighty.app) 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](https://business.brighty.app/auth?signup=true). 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:
- Telegram: [@DonatasSupportBot](https://t.me/DonatasSupportBot)
- Email: support@brighty.app

The bank will set it up within a few days.

### 2. Get API key

Go to [Account > Business](https://business.brighty.app/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:

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

Or configure manually:

```bash
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.<tool> [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
- `brighty_list_members`
- `brighty_add_members emails=a@b.com,c@d.com role=ADMIN|MEMBER`
- `brighty_remove_members memberIds=UUID1,UUID2`

## 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](https://apidocs.brighty.app/docs/api/brighty-api)

Attribution

rondoflowrondoflow
View sourceMore from rondoflow →
SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.

Comments (0)

No comments yet. Be the first to comment!

SSkills DirectorySkills Directory

Ship a skill? Prove it's safe.

Free 120-pattern security scan, letter grade, and an embeddable README badge.

Submit a skill

Related Skills

Caveman

Ultra-compressed communication mode that cuts output tokens while keeping technical accuracy. Levels: lite, full, ultra and the wenyan variants. Use for /caveman, "caveman mode", "talk like caveman", "be brief" or "less tokens".

1074701 votes

Hyperplan

Adversarial multi-agent planning skill. Self-orchestrates 5 hostile category members (unspecified-low, unspecified-high, deep, ultrabrain, artistry) via team-mode for ruthless cross-critique debate, distills only the defensible insights, then MANDATORILY hands the distilled insight bundle to the `plan` agent for executable plan formalization. Use when planning needs maximum rigor and surfacing of weak assumptions, blind spots, and over-engineering. Triggers: 'hyperplan', 'hpp', '/hyperplan', ...

693621 votes

Mcp Code Execution

Routes multi-tool workflows through MCP servers for large datasets and pipelines. Use when Bash tool overhead is limiting throughput on data-heavy tasks.

3351 votes

catchup

Recovers the conversation and failed tool calls of a previous Codex, Claude Code, Antigravity, Cline, Copilot CLI, Cursor, DeepSeek Harness, Kimi, OpenCode, Pi Agent, or ZCode session. Use when the user says "catch up", "what did the last session do", "get me up to speed", "I switched agents", asks to recover/summarize a previous session before continuing, or asks to diagnose or report a catchup failure. Do NOT use for the current conversation, git history, or any non-agent log.

691 votes

math-skill

A comprehensive mathematical reasoning skill for AI assistants — handles arithmetic to research-level problems with rigorous step-by-step reasoning, systematic verification, and transparent uncertainty handling

381 votes
View all in ai-agents →