Raw HTTP
Standard MCP endpoint.
BankBridge is a plain-vanilla streamable-http MCP server. Point any MCP-speaking client at it with a bearer token and you’re in.
Step 01
The endpoint.
URL
https://bankbridge.money/api/mcp
Required header
Authorization: Bearer ldgr_your_api_key_here
Step 02
Test it with curl.
shell
curl -N https://bankbridge.money/api/mcp \
-H "Authorization: Bearer ldgr_your_api_key_here" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/list"
}'You should see all 11 tool definitions in the response. If you get a 401, your token is wrong. If you get a 403, your subscription isn’t active.
Step 03
That's the API.
Speaks MCP 2025-03-26 (streamable-http). Supports tools/list, tools/call, and session re-initialization per spec. No custom extensions — your existing MCP client library will just work.
Problems? Email hello@bankbridge.money.