English · Português
openfinance-br-mcp
Experimental MCP server for Open Finance Brasil, with a complete mock environment and evolving FAPI-BR integration. It is not certified or validated against real institutions; see VALIDATION.md before using it outside
environment=mock.
What it is
An MCP Server that abstracts away the complexity of Open Finance Brasil (FAPI 1.0 Advanced, OAuth2, consent, mTLS) and exposes simple tools to Claude:
Claude → "how much did I spend on food in March?"
Claude uses list_transactions(bank=nubank, categorize=true, date_from=2024-03-01)
Claude → "You spent R$ 847.30 on food in March..."
Supported banks
The mock environment simulates Nubank, Sicoob, Caixa, Banco do Brasil, Bradesco, Itaú, Santander, XP, PicPay, and BTG Pactual with in-memory data and no network access. These are simulations, not certified integrations.
Real adapters and the Payments API journey are experimental and unvalidated.
Payments use the v5 payments-consents/payments-pix Directory families,
dedicated per-consent tokens, verified response JWS, PAR/JAR, consent-payload
binding, and persistent idempotency.
list_pix_keys is a demonstration extension rather than a standardized Open
Finance Brasil endpoint. See VALIDATION.md
for the exact scope.
Available MCP tools
The server exposes 18 tools grouped by journey:
- Accounts:
list_accounts,get_balance,list_transactions - Cards:
list_credit_cards,get_credit_card_bills - Investments:
list_investments,list_funds,list_variable_incomes,list_treasure_titles - PIX:
list_pix_keys,initiate_pix - Data consent:
start_consent,complete_consent,check_consent_status,revoke_consent - Payment consent:
start_payment_consent,complete_payment_consent,check_payment_consent_status
It also exposes the openfinance://banks/ resource, the
analyze_monthly_spending prompt, and optional URL elicitation when starting
an authorization flow.
Quick start
Prerequisites
- Python 3.12 or 3.13
- uv installed
# Run the published release in credential-free mock mode
uvx --from openfinance-br-mcp==0.2.0 openfinance-mcp
From source
git clone https://github.com/brunovicco/openfinance-br-mcp.git
cd openfinance-br-mcp
# Optional: needed only for sandbox/production or DSPy categorization
cp .env.example .env
# Install dependencies
uv sync
# Run the server
uv run openfinance-mcp
Claude Desktop
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"openfinance-br": {
"command": "uvx",
"args": ["--from", "openfinance-br-mcp==0.2.0", "openfinance-mcp"]
}
}
}
Development
# Install with dev-dependencies
uv sync
# Run the tests
uv run pytest tests/ -v
# Lint and formatting
uv run ruff check src/ tests/
uv run black src/ tests/
# Type check
uv run mypy src/
Containers and Kubernetes
docker compose up openfinance-mcp
docker compose --profile test up
The k8s/ directory contains a two-replica Streamable HTTP example with
Redis-backed state. Replace every credential, signing-key, OAuth issuer,
resource-server, and domain placeholder before applying it. The server fails
closed when HTTP is exposed outside loopback without MCP client OAuth.
Architecture
Claude (MCP Client)
│ stdio or streamable-http
▼
openfinance-br-mcp (MCP Server)
├── Auth + Consent (FAPI-BR 2.2.0: private_key_jwt, PAR/JAR, PKCE, mTLS)
├── MCP Primitives (18 tools + 1 resource + 1 prompt)
│ ├── Pydantic v2 input/output schemas
│ ├── Optional URL elicitation for bank authorization
│ └── Categorizer (DSPy + Claude for transaction classification)
├── Bank Adapters (10 banks - extensible)
└── Directory Client (resolves real bank endpoints from the BCB
Directory of Participants)
│ HTTPS/mTLS
▼
Open Finance BR (BCB) - Directory of Participants
│
▼
Nubank · Sicoob · Caixa · + 100 participating institutions
Environment variables
| Variable | Required | Description |
|---|---|---|
ENVIRONMENT |
❌ | mock (default, no credentials needed), sandbox, or production |
CLIENT_ID |
⚠️ non-mock | Client ID registered with the institution |
PRIVATE_KEY_PATH |
⚠️ non-mock | RSA private key for private_key_jwt/JAR signing |
PRIVATE_KEY_KID |
⚠️ non-mock | kid matching the registered client JWKS |
MTLS_CERT_PATH |
⚠️ prod | Path to the mTLS certificate |
MTLS_KEY_PATH |
⚠️ prod | mTLS private key |
ANTHROPIC_API_KEY |
⚠️ DSPy | Required for categorize=true |
REDIS_URL |
❌ | Shares TokenStore/ConsentManager state across replicas |
MCP_TRANSPORT |
❌ | stdio (default) or streamable-http |
MCP_HTTP_ALLOWED_ORIGINS |
⚠️ remote HTTP | Required allowlist for any non-loopback bind |
LANGFUSE_OTLP_ENDPOINT |
❌ | Enables tracing to Langfuse (with LANGFUSE_PUBLIC_KEY/LANGFUSE_SECRET_KEY) |
LOG_LEVEL |
❌ | INFO, DEBUG, WARNING (default: INFO) |
LOG_FORMAT |
❌ | json or console (default: json) |
See .env.example
for the full list.
Documentation
- Authorization - the two token universes and why they can never cross
- Contributing - dev setup, CI checks, and adding an adapter
- Security - scope, disclaimer, and vulnerability reporting
- Sources - specifications and RFCs followed by the implementation
- Validation - what has and has not been validated
- Changelog - release history
- Releasing - maintainer release procedure
License
MIT
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file openfinance_br_mcp-0.2.0.tar.gz.
File metadata
- Download URL: openfinance_br_mcp-0.2.0.tar.gz
- Upload date:
- Size: 496.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
d70e94f7770e24e19342113e97cb0c32a989375288fbba6528ff03e02e77763c
|
|
| MD5 |
3d16053d5392cc584048cf8cfe52fad3
|
|
| BLAKE2b-256 |
f421635260e8d27e90a3d16b1ae48b8fd7dfd107a21fd544f90b27cad1902e86
|
Provenance
The following attestation bundles were made for openfinance_br_mcp-0.2.0.tar.gz:
Publisher:
release.yml on brunovicco/openfinance-br-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openfinance_br_mcp-0.2.0.tar.gz -
Subject digest:
d70e94f7770e24e19342113e97cb0c32a989375288fbba6528ff03e02e77763c - Sigstore transparency entry: 2191590082
- Sigstore integration time:
-
Permalink:
brunovicco/openfinance-br-mcp@0b42e27c7dbaebf4f54b02cc2cb8d625e7d92c3f -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/brunovicco
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0b42e27c7dbaebf4f54b02cc2cb8d625e7d92c3f -
Trigger Event:
push
-
Statement type:
File details
Details for the file openfinance_br_mcp-0.2.0-py3-none-any.whl.
File metadata
- Download URL: openfinance_br_mcp-0.2.0-py3-none-any.whl
- Upload date:
- Size: 747.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via:
twine/6.1.0 CPython/3.13.13
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e7033ea9a21c05082020e18db695c0f2c3b19566ba08ea117ffb326d8c0cccee
|
|
| MD5 |
f69a64c4951e1aea00259e04883c7233
|
|
| BLAKE2b-256 |
8fd8930f4c4c6f35f47c79f56bd2d13b1f55f1bb5f105ff6e5b00bb32abae1a9
|
Provenance
The following attestation bundles were made for openfinance_br_mcp-0.2.0-py3-none-any.whl:
Publisher:
release.yml on brunovicco/openfinance-br-mcp
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
openfinance_br_mcp-0.2.0-py3-none-any.whl -
Subject digest:
e7033ea9a21c05082020e18db695c0f2c3b19566ba08ea117ffb326d8c0cccee - Sigstore transparency entry: 2191590112
- Sigstore integration time:
-
Permalink:
brunovicco/openfinance-br-mcp@0b42e27c7dbaebf4f54b02cc2cb8d625e7d92c3f -
Branch / Tag:
refs/tags/v0.2.0 - Owner: https://github.com/brunovicco
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
release.yml@0b42e27c7dbaebf4f54b02cc2cb8d625e7d92c3f -
Trigger Event:
push
-
Statement type: