@codespar/mcp-dock 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 +24 -14
  2. package/package.json +2 -2
  3. package/server.json +2 -2
package/README.md CHANGED
@@ -73,20 +73,30 @@ Add to `.cursor/mcp.json` or `.vscode/mcp.json`:
73
73
  }
74
74
  ```
75
75
 
76
- ## Tools
77
-
78
- | Tool | Description |
79
- |------|-------------|
80
- | `create_account` | Open a digital account for an end user |
81
- | `get_account` | Retrieve account balance, status, coordinates |
82
- | `send_pix` | Outbound Pix transfer from a Dock account |
83
- | `get_pix` | Retrieve Pix payment by endToEndId |
84
- | `create_pix_qr_static` | Reusable Pix QR (points-of-sale, donations) |
85
- | `create_pix_qr_dynamic` | Single-use expiring Pix QR (e-commerce checkouts) |
86
- | `refund_pix` | Refund (devolução) a Pix payment |
87
- | `resolve_dict_key` | DICT lookup resolve Pix key to account holder |
88
- | `issue_card` | Issue debit / credit / prepaid / virtual card Dock's differentiator |
89
- | `get_card` | Retrieve card status, masked PAN, limits |
76
+ ## Tools (20)
77
+
78
+ | Tool | Purpose |
79
+ |---|---|
80
+ | `create_account` | Create a digital account for an end user (CPF holder) on Dock. |
81
+ | `get_account` | Retrieve a Dock account by id. |
82
+ | `send_pix` | Initiate an outbound Pix transfer from a Dock account to any Pix key in BR. |
83
+ | `get_pix` | Retrieve an outbound Pix payment by endToEndId. |
84
+ | `create_pix_qr_static` | Create a static Pix QR (reusable, tied to a merchant Pix key). |
85
+ | `create_pix_qr_dynamic` | Create a dynamic Pix QR (single-use, expiring). |
86
+ | `refund_pix` | Refund (devolução) a Pix payment. |
87
+ | `resolve_dict_key` | Resolve a Pix DICT key to the account holder's identity and ISPB/branch/account. |
88
+ | `issue_card` | Issue a card (debit / credit / prepaid / virtual) against a Dock account. |
89
+ | `get_card` | Retrieve a card by id. |
90
+ | `list_accounts` | List Dock accounts under the merchant. |
91
+ | `freeze_account` | Freeze (block) a Dock account. |
92
+ | `unfreeze_account` | Unfreeze a previously frozen Dock account, restoring Pix and card operations. |
93
+ | `block_card` | Block a card temporarily (reversible). |
94
+ | `unblock_card` | Unblock a card that was previously blocked (reversible). |
95
+ | `change_card_status` | Change a card's lifecycle status: ACTIVE / BLOCKED / CANCELED. |
96
+ | `list_transactions` | List transactions on a Dock account (Pix in/out, card auths, fees, transfers). |
97
+ | `get_transaction` | Retrieve a single transaction by id. |
98
+ | `create_webhook` | Register a webhook endpoint to receive Dock event notifications (account.*, pix.*, card.*, transaction.*). |
99
+ | `list_webhooks` | List all webhook endpoints registered for the merchant. |
90
100
 
91
101
  ## Authentication
92
102
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@codespar/mcp-dock",
3
- "version": "0.2.0-alpha.1",
4
- "description": "MCP server for Dock Brazilian Banking-as-a-Service (accounts, Pix, card issuing) for fintechs and embedded-finance products",
3
+ "version": "0.2.0-alpha.2",
4
+ "description": "MCP server for Dock \u2014 Brazilian Banking-as-a-Service (accounts, Pix, card issuing) for fintechs and embedded-finance products",
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/dock"
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-dock",
15
- "version": "0.2.0-alpha.1",
15
+ "version": "0.2.0-alpha.2",
16
16
  "transport": {
17
17
  "type": "stdio"
18
18
  },