@codespar/mcp-matera 0.2.0-alpha.1 → 0.2.0-alpha.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/README.md +26 -14
  2. package/package.json +2 -2
  3. package/server.json +2 -2
package/README.md CHANGED
@@ -63,20 +63,32 @@ Add to `.cursor/mcp.json` or `.vscode/mcp.json`:
63
63
  }
64
64
  ```
65
65
 
66
- ## Tools
67
-
68
- | Tool | Description |
69
- |------|-------------|
70
- | `create_pix_charge_static` | Static Pix QR code (reusable, tied to a merchant Pix key) |
71
- | `create_pix_charge_dynamic` | Dynamic Pix QR code (single-use, expiring) |
72
- | `get_pix_charge` | Retrieve a Pix charge by txid |
73
- | `create_pix_payment` | Initiate an outbound Pix transfer |
74
- | `get_pix_payment` | Retrieve an outbound Pix payment by endToEndId |
75
- | `refund_pix_payment` | Refund (devolução) a Pix payment |
76
- | `list_pix_payments` | List Pix payments with filters (start, end, status) |
77
- | `resolve_pix_key` | DICT lookup resolve a Pix key to account info |
78
- | `list_dict_keys` | List DICT keys registered to merchant accounts |
79
- | `create_pix_automatico` | Register a recurring Pix Automático agreement (BCB 2025) |
66
+ ## Tools (22)
67
+
68
+ | Tool | Purpose |
69
+ |---|---|
70
+ | `create_pix_charge_static` | Create a static Pix charge (reusable QR code tied to a merchant Pix key). |
71
+ | `create_pix_charge_dynamic` | Create a dynamic Pix charge (single-use QR with expiration). |
72
+ | `get_pix_charge` | Retrieve a Pix charge (static or dynamic) by txid. |
73
+ | `list_pix_charges` | List immediate Pix charges (BCB /cob) with date and status filters. |
74
+ | `update_pix_charge` | Update an immediate Pix charge (BCB PATCH /cob/{txid}). |
75
+ | `create_pix_charge_due` | Create a due-dated Pix charge (BCB /cobv Pix com Vencimento). |
76
+ | `get_pix_charge_due` | Retrieve a due-dated Pix charge (BCB GET /cobv/{txid}). |
77
+ | `create_pix_payment` | Initiate an outbound Pix transfer (ordem de pagamento). |
78
+ | `get_pix_payment` | Retrieve an outbound Pix payment by endToEndId. |
79
+ | `refund_pix_payment` | Refund (devolução) a Pix payment. |
80
+ | `list_pix_payments` | List outbound Pix payments with optional filters. |
81
+ | `list_pix_received` | List inbound Pix (Pix recebidos) credited to merchant accounts in a date range. |
82
+ | `resolve_pix_key` | Resolve a Pix DICT key to the account holder's identity and ISPB/branch/account. |
83
+ | `list_dict_keys` | List DICT keys registered to the merchant's accounts on Matera. |
84
+ | `register_dict_key` | Register (claim) a DICT key for a merchant account on Matera. |
85
+ | `delete_dict_key` | Delete a DICT key the merchant owns. |
86
+ | `create_pix_automatico` | Register a Pix Automático recurrence (BCB 2025 recurring Pix product, /rec). |
87
+ | `get_pix_automatico` | Retrieve a Pix Automático recurrence by idRec. |
88
+ | `cancel_pix_automatico` | Cancel an active Pix Automático recurrence. |
89
+ | `get_account_balance` | Get the current balance of a Matera-managed account. |
90
+ | `get_account_statement` | Get the statement (extrato) of a Matera-managed account in a date range. |
91
+ | `internal_transfer` | Book a transfer between two accounts both held on Matera (TED-interno / transferência interna). |
80
92
 
81
93
  ## Authentication
82
94
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codespar/mcp-matera",
3
- "version": "0.2.0-alpha.1",
4
- "description": "MCP server for Matera Brazilian core-banking infrastructure (BaaS) for fintechs building on top of Pix, DICT, and Pix Automático",
3
+ "version": "0.2.0-alpha.2",
4
+ "description": "MCP server for Matera \u2014 Brazilian core-banking infrastructure (BaaS) for fintechs building on top of Pix, DICT, and Pix Autom\u00e1tico",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",
7
7
  "bin": {
package/server.json CHANGED
@@ -7,12 +7,12 @@
7
7
  "source": "github",
8
8
  "subfolder": "packages/banking/matera"
9
9
  },
10
- "version": "0.2.0-alpha.1",
10
+ "version": "0.2.0-alpha.2",
11
11
  "packages": [
12
12
  {
13
13
  "registryType": "npm",
14
14
  "identifier": "@codespar/mcp-matera",
15
- "version": "0.2.0-alpha.1",
15
+ "version": "0.2.0-alpha.2",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },