Brighty MCP Server

Brighty MCP Server

Banking infrastructure for AI agents: open accounts, issue cards, send SEPA/SWIFT payments, run mass payouts, and pay invoices via natural language.

Category
访问服务器

README

brighty-agent-toolkit

npm CI License: MIT Node AgentSkills

Banking infrastructure for AI agents. Use Brighty from Claude, Codex, Cursor, OpenClaw, or any MCP-compatible client to open accounts, issue cards, send SEPA/SWIFT payments, run mass payouts, and pay invoices — all through natural language.

This repository ships three things in one place:

  • MCP server — exposes the Brighty API as 24 tools over stdio. Works with any MCP client.
  • AgentSkills — four AgentSkills-spec skills (banking, payouts, invoice payment, card management) that teach an agent when and how to call the tools. Work in any AgentSkills-compatible client (Claude, Codex, Cursor, OpenClaw, ...).
  • Anthropic plugin manifest — bundles the above for one-command install via /plugin marketplace add in Claude Code or Claude Desktop. The plugin wrapper is Anthropic-specific; the underlying MCP server and skills are not.

Specialized agents and slash commands for common workflows are planned for 0.1 — see the roadmap note below.

Quick start

Status: Published to npm as @brighty-app/mcp-server and installable as a Claude Code plugin from this GitHub repo. ClawHub publishing of individual skills is on the roadmap, not done.

Get a Brighty API key from the Brighty Business Portal — Owner role only. Set it as the BRIGHTY_API_KEY environment variable, or store it once in the OS keychain via the bundled login CLI (see Authentication).

Claude Code / Claude Desktop (recommended)

/plugin marketplace add razz-team/brighty-agent-toolkit
/plugin install brighty@brighty-agent-toolkit

This registers the stdio MCP server (via npx -y -p @brighty-app/mcp-server@<pinned-version> brighty-mcp — the -p form is required because the package ships two bins, brighty-mcp and brighty-mcp-login, neither of which matches the unscoped package name) and installs all four skills. The bundled .mcp.json pins the server version to match the plugin manifest version, so the npm dist-tag does not float independently of the plugin release. The two are kept in sync automatically by scripts/sync-versions.mjs when changesets bumps the package — see docs/CHANGESETS.md.

BRIGHTY_API_KEY and (optionally) BRIGHTY_API_URL are forwarded from the environment of whatever shell you launch Claude Code from — set them before launch.

Local checkout (development / unpublished features)

git clone https://github.com/razz-team/brighty-agent-toolkit
cd brighty-agent-toolkit
corepack enable
yarn install
yarn workspace @brighty-app/mcp-server build

Then point your MCP client command at node /absolute/path/to/brighty-agent-toolkit/packages/mcp-server/dist/index.js.

Skills only — any AgentSkills-compatible client

cp -r skills/* ~/.claude/skills/
# or ~/.codex/skills/, ~/.agents/skills/, etc.

The skills assume the Brighty MCP server is reachable over stdio — set it up in your client first, then drop the skill files in.

Ask your agent to install it

If you'd rather have your agent run the install for you, paste this prompt:

Install Brighty into this client. Read
https://github.com/razz-team/brighty-agent-toolkit/blob/master/AGENTS.md
and follow the path matching the client we're in.

AGENTS.md walks the agent through Claude Code, generic MCP clients, skill-only setups, and credential persistence.

What's inside

Skills

Skill Use case
brighty-banking Balances, account info, transfers between own accounts, basic queries
brighty-payouts Mass payouts, payroll runs, CSV/Excel ingestion
brighty-invoice-pay Pay an invoice from a PDF or image
brighty-cards Issue, freeze, set limits on business cards

Each skill is self-contained and installs independently. They all assume the Brighty MCP server is reachable over stdio.

MCP server

packages/mcp-server is a TypeScript MCP server exposing 24 tools across accounts, payouts, transfers, cards, and members. Tool source lives in packages/mcp-server/src/tools/<domain>/<tool-name>.ts (one tool per file). The server runs over stdio as a subprocess of the agent client — this is the design, not a temporary state.

Alternative installation

Local stdio MCP only (no plugin)

npm install -g @brighty-app/mcp-server@latest

Then add to your client config (e.g., claude_desktop_config.json):

{
  "mcpServers": {
    "brighty": {
      "command": "brighty-mcp",
      "env": { "BRIGHTY_API_KEY": "your-key" }
    }
  }
}

For reproducible installs, pin the version explicitly instead of @latest — e.g. @brighty-app/mcp-server@0.0.2. The npx -y -p ... form in the plugin path always pins to a specific version via .mcp.json.

Authentication

The server reads the Brighty API key in this order:

  1. BRIGHTY_API_KEY environment variable (preferred for CI, Docker, ephemeral hosts).
  2. OS keychain entry brighty-mcp / default (preferred for personal workstations).

If neither is set, the server exits with an actionable error. There is no ~/.brighty/config.json and no MCP tool that writes credentials — credential mutation is intentionally an out-of-band CLI step. See docs/SECURITY.md for the full threat model.

To populate the keychain, run the bundled CLI:

# After a global npm install of @brighty-app/mcp-server (puts brighty-mcp on PATH):
brighty-mcp login

# From a local checkout (the bin is a workspace-only script, not on PATH):
yarn login

# Plugin / no-install path (uses the same CLI without a global install):
npx -y -p @brighty-app/mcp-server brighty-mcp login

# In every case:
# Brighty API key: <paste key>

The CLI validates the key against GET /accounts (the lightest authenticated endpoint on the Brighty Business API) before saving and masks it in any output. To clear the entry, delete the brighty-mcp item via your OS keychain UI (Keychain Access on macOS, secret-tool on Linux, Credential Manager on Windows).

To point the server at a non-production Brighty environment (staging, sandbox, mock), set BRIGHTY_API_URL to the full base URL including the API version path — defaults to https://api.brighty.app/business/v1. Example for the dev environment: BRIGHTY_API_URL=https://api.brighty.codes/business/v1.

Repository structure

.
├── .claude-plugin/
│   ├── marketplace.json     # plugin marketplace registration
│   └── plugin.json          # plugin manifest (skills + MCP server)
├── .mcp.json                # default MCP server connection (stdio)
├── packages/
│   └── mcp-server/          # TypeScript MCP server, 24 tools
├── skills/                  # AgentSkills-spec skills (publishable as-is)
│   ├── brighty-banking/
│   ├── brighty-payouts/
│   ├── brighty-invoice-pay/
│   └── brighty-cards/
├── docs/                    # SECURITY.md, plans/
└── scripts/                 # CI utilities (validate-plugin, check-tool-references)

Development

corepack enable
yarn install
yarn validate-plugin            # verify plugin manifest matches the file tree
yarn validate                   # validate all skills against AgentSkills spec
yarn check-tools                # ensure SKILL.md tool references match MCP source
yarn workspace @brighty-app/mcp-server build
yarn workspace @brighty-app/mcp-server test

CI runs the above on every PR. The cross-reference check between skill instructions and MCP tool definitions is the load-bearing invariant: renaming a tool without updating the corresponding skill fails the build.

Contributing

See CONTRIBUTING.md for the full guide. Short version: every PR has to keep the validate-plugin / validate / check-tools invariants green, every new MCP tool or schema change is cross-checked against the Brighty OpenAPI spec, and credential-mutating tools are off-limits (see docs/SECURITY.md).

Changelog

CHANGELOG.md — Keep a Changelog format. Bump notes for each release plus an [Unreleased] section for what's queued.

Security

Never commit API keys. The MCP server reads BRIGHTY_API_KEY from the environment or the OS keychain (entry brighty-mcp / default) — see Authentication. The server is stdio-only and intended for single-operator use on the operator's own machine — not for shared/public hosting.

Report security issues to security@brighty.app, not via public issues.

Roadmap

See docs/ROADMAP.md for what's shipped, what's planned for the next release, and what's deferred.

License

MIT for the MCP server source and skill instructions. See LICENSE. The Brighty name and logo remain property of Brighty Holding Ltd.

Links

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选