1. Conduid
  2. AI
  3. Bunq Model Context Protocol Server
MCP server · AI

Bunq Model Context Protocol Server

MCP server: Bunq Model Context Protocol Server

Unclaimed last commit a year ago ai
37Low

Scored 4 months ago · breakdown

About Bunq Model Context Protocol Server

Bunq Model Context Protocol Server is an MCP server published by two-trick-pony-NL in the AI category: mCP server: Bunq Model Context Protocol Server. It has been installed 0 times through Conduid.

Six months or more without a commit doesn't mean the server is broken, but check the open issues (0) before depending on it in production.

Install

Install
npx bunq-model-context-protocol-server

This server has no ConduID identity, so agent calls to it are not receipted. Pin the version you install and review the source before granting it credentials.

Ask AI

Ask AI about Bunq Model Context Protocol Server

Powered by Claude · Grounded in docs

I know everything about Bunq Model Context Protocol Server. Ask me about installation, configuration, usage, or troubleshooting.

Security checks

  • ·README presentNot checked yet.
  • ·License declaredNot checked yet.
  • ·Tests presentNot checked yet.
  • ·Dependencies pinnedNot checked yet.
  • ·No dynamic code executionNot checked yet.
  • !Scoped permissionsDoesn't declare a permission scope. Assume it can do anything its process can.

README

🧠 MCP Server for bunq API

This is an MCP (Model Context Protocol) server that connects to the bunq banking API. It exposes a wide range of tools to interact with bunq, including payments, invoices, cards, and more via a chat agent.

You can use this with Claude Desktop or other MCP-compatible clients.


⚠️ WARNING: Running in PRODUCTION

Be extremely cautious when setting BUNQ_ENVIROMENT="PRODUCTION" in your .env file.
This will connect the MCP server to your live bunq account.
Make sure you understand the implications, verify API permissions, and never expose your production API key publicly. We take no responsibility for any money lost

🚀 Quick Start

1. Clone the repository and install dependencies

git clone https://github.com/two-trick-pony-NL/bunq-model-context-protocol-server.git
cd bunq-MCP
pip install -r requirements.txt
  1. Add a .env file In the root of the project, create a .env file with the following content:
BUNQ_API_KEY="sandbox_your_key"
BUNQ_ENVIROMENT="SANDBOX"

Request a bunq sandbox API key here:

curl --location --request POST 'https://public-api.sandbox.bunq.com/v1/sandbox-user-person' \
--header 'Content-Type: application/json' \
--header 'User-Agent: postman' \
--data ''

production keys can be fetched from your app

For production, set BUNQ_ENVIROMENT to PRODUCTION.

  1. Run the server
python3 main.py

🧠 Using with Claude Desktop Add the server to your Claude Desktop config.json:

{
  "mcpServers": {
    "bunq": {
      "command": "python3",
      "args": [
        "/Users/[path to the script]/main.py"
      ]
    }
  }
}

🔧 Tools Included This server exposes the following tools via the MCP interface:

get_user_id

get_user_display_name

get_primary_monetary_account_id

get_list_monetary_accounts

list_user_invoices

get_subscription_contracts

send_payment

request_money

create_card

fetch_last_payments

schedule_payment

generate_bunq_me_link

These tools use the official bunq SDK and return structured Python objects.

📁 Project Structure

.
├── main.py         # MCP server for bunq
├── .env            # Your bunq API key and environment
├── README.md       # This file\

🧑‍💻 License MIT — feel free to fork and modify.

README mirrored from the source repository 4 months ago. The original is authoritative.

Questions

About Bunq Model Context Protocol Server

How do I install Bunq Model Context Protocol Server?

Run npx bunq-model-context-protocol-server, then add the server to your MCP client's configuration. Conduid has recorded 0 installs, so the command is known to work with current clients.

Is Bunq Model Context Protocol Server safe to use with an AI agent?

Its trust score is 37 out of 100 (low). It passes 0 of 1 static security checks; the failures are listed above. It has no ConduID identity yet, so agent calls to it are not receipted.

Is Bunq Model Context Protocol Server still maintained?

The last commit was a year ago, with 0 open issues. That's long enough that you should check whether the maintainer is responding to issues before depending on it.