Connector guide1-minute readEN · DE · IT

如何将Revolut连接到ChatGPT

通过MCP将Revolut Business API连接到ChatGPT。使用AnythingMCP以自然语言查询账户、交易和团队开支。

HCBy HelpCode teamUpdated 1 min read Open source on GitHub

No credit card · 7-day trial · Self-host alternative available

  • 7-day free trial
    No credit card required
  • GDPR & SOC 2 ready
    EU data residency, audit logs
  • Open-source on GitHub
    Source-available BSL-1.1
  • Works with ChatGPT, Claude, Gemini
    Any MCP-compatible client

Summary

通过MCP将Revolut Business API连接到ChatGPT。使用AnythingMCP以自然语言查询账户、交易和团队开支。

使用ChatGPT分析你的商业银行业务

Revolut没有MCP连接器。通过AnythingMCP,你可以将Revolut的Business API转换为MCP服务器,让ChatGPT分析你的账户、交易和团队开支。

分步指南

第一步:部署AnythingMCP

git clone https://github.com/HelpCode-ai/anythingmcp.git
cd anythingmcp && docker compose up -d

第二步:获取Revolut Business API凭证

在Revolut Business中,前往设置 → APIs → Business API。创建API证书并生成只读权限的访问令牌。首先使用沙盒环境:https://sandbox-b2b.revolut.com/api/1.0

第三步:创建REST连接器

创建一个基础URL为https://b2b.revolut.com/api/1.0的REST连接器。设置Bearer令牌身份验证。

第四步:暴露关键端点

  • GET /accounts — 所有商业账户
  • GET /transactions — 交易历史
  • GET /team-members — 团队成员列表
  • GET /counterparties — 保存的受益人
  • GET /exchange/quote — 汇率报价

第五步:连接ChatGPT

{
  "mcpServers": {
    "revolut": {
      "url": "http://localhost:4000/mcp"
    }
  }
}

第六步:查询你的商业银行业务

  • "我们所有Revolut账户的总余额是多少?"
  • "这个月所有超过€1,000的交易有哪些?"
  • "团队在订阅上花费了多少?"
  • "哪个团队成员的开支最高?"
  • "当前GBP对EUR的汇率是多少?"

安全最佳实践

  • 仅使用只读API权限
  • 通过IP白名单限制API访问
  • 在连接生产环境之前先在沙盒中测试

下一步

这份指南对你有帮助吗?

Ready to ship

Ship MCP to your stack in 60 seconds.

Spin up AnythingMCP on managed Cloud or self-host it on your infrastructure. Free for 7 days, no credit card.

相关指南