aura-courier-mcp 2.3.1 → 2.3.3
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.
- package/LICENSE +21 -0
- package/README.md +34 -14
- package/package.json +3 -2
package/LICENSE
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Aura Ajentic AI
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Aura Courier MCP
|
|
2
2
|
|
|
3
|
-
Universal Bangladesh courier MCP server — **Steadfast
|
|
3
|
+
Universal Bangladesh courier MCP server — **Steadfast, Pathao, RedX & Paperfly** with a built-in **fraud-risk engine** — for Claude, Antigravity, Cursor, n8n and any MCP-compatible AI agent. Book and track parcels across Bangladesh by just telling your AI.
|
|
4
4
|
|
|
5
5
|
By **Aura Ajentic AI** · [auraajenticai.cloud](https://auraajenticai.cloud) · ✓ Verified on Glama
|
|
6
6
|
|
|
@@ -9,12 +9,24 @@ By **Aura Ajentic AI** · [auraajenticai.cloud](https://auraajenticai.cloud) ·
|
|
|
9
9
|
| Tool | What it does |
|
|
10
10
|
|------|--------------|
|
|
11
11
|
| `list_couriers` | Show supported couriers and which credentials are active |
|
|
12
|
-
| `create_parcel` | Book a parcel (Steadfast / Pathao / auto
|
|
13
|
-
| `track_parcel` | Track a shipment by tracking / consignment
|
|
14
|
-
| `get_balance` | Merchant account balance
|
|
12
|
+
| `create_parcel` | Book a parcel (Steadfast / Pathao / RedX / Paperfly, or `auto`) |
|
|
13
|
+
| `track_parcel` | Track a shipment by tracking / consignment / reference id |
|
|
14
|
+
| `get_balance` | Merchant account balance (Steadfast / Pathao) |
|
|
15
15
|
| `check_fraud_risk` | Delivery/return-risk score for a Bangladeshi phone number |
|
|
16
16
|
|
|
17
|
-
##
|
|
17
|
+
## Two ways to connect
|
|
18
|
+
|
|
19
|
+
### 1) Remote URL — claude.ai web, n8n, any remote client
|
|
20
|
+
|
|
21
|
+
Add this as a custom MCP connector and pass your courier keys as headers (or query params):
|
|
22
|
+
|
|
23
|
+
```
|
|
24
|
+
https://courier.auraajenticai.cloud/mcp
|
|
25
|
+
```
|
|
26
|
+
|
|
27
|
+
Headers: `x-steadfast-api-key`, `x-steadfast-secret-key`, `x-pathao-client-id` …, `x-redx-api-token`, `x-paperfly-api-key`, `x-paperfly-store-name`, `x-paperfly-username`, `x-paperfly-password`.
|
|
28
|
+
|
|
29
|
+
### 2) Local (npx) — Claude Desktop, Cursor, Antigravity
|
|
18
30
|
|
|
19
31
|
```json
|
|
20
32
|
{
|
|
@@ -23,25 +35,33 @@ By **Aura Ajentic AI** · [auraajenticai.cloud](https://auraajenticai.cloud) ·
|
|
|
23
35
|
"command": "npx",
|
|
24
36
|
"args": ["-y", "aura-courier-mcp@latest"],
|
|
25
37
|
"env": {
|
|
26
|
-
"STEADFAST_API_KEY": "
|
|
27
|
-
"STEADFAST_SECRET_KEY": "
|
|
28
|
-
"
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
38
|
+
"STEADFAST_API_KEY": "…",
|
|
39
|
+
"STEADFAST_SECRET_KEY": "…",
|
|
40
|
+
"REDX_API_TOKEN": "…",
|
|
41
|
+
"PAPERFLY_API_KEY": "…",
|
|
42
|
+
"PAPERFLY_STORE_NAME": "…",
|
|
43
|
+
"PAPERFLY_USERNAME": "…",
|
|
44
|
+
"PAPERFLY_PASSWORD": "…"
|
|
33
45
|
}
|
|
34
46
|
}
|
|
35
47
|
}
|
|
36
48
|
}
|
|
37
49
|
```
|
|
38
50
|
|
|
39
|
-
|
|
51
|
+
Add only the couriers you use — each is independent. Your keys stay on your side (env vars or request headers); they are never stored by Aura.
|
|
52
|
+
|
|
53
|
+
## Courier notes
|
|
54
|
+
|
|
55
|
+
- **Steadfast / Pathao** — API key + secret (Pathao also needs client id/secret + username/password).
|
|
56
|
+
- **RedX** — API access token (`REDX_API_TOKEN`). Delivery area is auto-resolved from the address, or pass `delivery_area_id`.
|
|
57
|
+
- **Paperfly** — needs **both** the `paperflykey` **and** your merchant username/password on create *and* track, plus your store name.
|
|
58
|
+
- `get_balance` is available for Steadfast & Pathao (RedX/Paperfly don't expose a balance API).
|
|
40
59
|
|
|
41
60
|
## Then just ask
|
|
42
61
|
|
|
43
62
|
> "Book a Steadfast parcel for invoice A-1001, COD 1500 to 017XXXXXXXX."
|
|
44
|
-
> "
|
|
63
|
+
> "Create a RedX parcel to Dhanmondi, COD 900."
|
|
64
|
+
> "Track consignment 20A316MOG0DI."
|
|
45
65
|
|
|
46
66
|
## License
|
|
47
67
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "aura-courier-mcp",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.3",
|
|
4
4
|
"description": "Universal Bangladesh courier MCP server — Steadfast, Pathao, RedX & Paperfly with a built-in fraud-risk engine — for Claude, Antigravity, Cursor & n8n AI agents. Runs as a local npx (STDIO) server or a remote HTTP endpoint.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -9,7 +9,8 @@
|
|
|
9
9
|
},
|
|
10
10
|
"files": [
|
|
11
11
|
"dist",
|
|
12
|
-
"README.md"
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
13
14
|
],
|
|
14
15
|
"publishConfig": {
|
|
15
16
|
"access": "public"
|