@asgpay/mcp-server 1.0.0 → 1.0.1
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/README.md +6 -3
- package/package.json +34 -10
package/README.md
CHANGED
|
@@ -70,10 +70,13 @@ npx @asgpay/cli install --client cursor
|
|
|
70
70
|
|
|
71
71
|
| Package | Purpose |
|
|
72
72
|
|---------|---------|
|
|
73
|
-
| **[@asgpay/pay](https://npmjs.com/package/@asgpay/pay)** | Multi-chain payment SDK |
|
|
73
|
+
| **[@asgpay/pay](https://npmjs.com/package/@asgpay/pay)** | Multi-chain payment SDK (x402 + MPP) |
|
|
74
|
+
| **[@asgpay/sdk](https://npmjs.com/package/@asgpay/sdk)** | Virtual Mastercard management |
|
|
75
|
+
| **[@asgpay/cli](https://npmjs.com/package/@asgpay/cli)** | Card creation & management CLI |
|
|
74
76
|
| **[@asgpay/mcp-server](https://npmjs.com/package/@asgpay/mcp-server)** | ← You are here. MCP tools. |
|
|
75
|
-
| **[@asgpay/
|
|
76
|
-
| **[@asgpay/
|
|
77
|
+
| **[@asgpay/fund](https://npmjs.com/package/@asgpay/fund)** | One-link agent wallet funding |
|
|
78
|
+
| **[@asgpay/agent-cash](https://npmjs.com/package/@asgpay/agent-cash)** | Autonomous virtual credit cards |
|
|
79
|
+
| **[@asgpay/create-app](https://npmjs.com/package/@asgpay/create-app)** | Project scaffolding |
|
|
77
80
|
|
|
78
81
|
## Links
|
|
79
82
|
|
package/package.json
CHANGED
|
@@ -1,20 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@asgpay/mcp-server",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"description": "ASG Pay MCP Server — 11 AI agent tools for Claude, Codex, Cursor, and Gemini CLI. Create virtual cards, fund wallets, manage spending via Model Context Protocol.",
|
|
5
5
|
"main": "index.js",
|
|
6
|
-
"bin": {
|
|
6
|
+
"bin": {
|
|
7
|
+
"asgpay-mcp": "index.js"
|
|
8
|
+
},
|
|
7
9
|
"keywords": [
|
|
8
|
-
"asg-pay",
|
|
9
|
-
"
|
|
10
|
-
"
|
|
11
|
-
"
|
|
10
|
+
"asg-pay",
|
|
11
|
+
"asgpay",
|
|
12
|
+
"mcp",
|
|
13
|
+
"mcp-server",
|
|
14
|
+
"model-context-protocol",
|
|
15
|
+
"claude",
|
|
16
|
+
"codex",
|
|
17
|
+
"cursor",
|
|
18
|
+
"gemini-cli",
|
|
19
|
+
"ai-agent-tools",
|
|
20
|
+
"virtual-card",
|
|
21
|
+
"card-management",
|
|
22
|
+
"ai-payments",
|
|
23
|
+
"autonomous-agent",
|
|
24
|
+
"langchain",
|
|
25
|
+
"crewai",
|
|
26
|
+
"asgcard"
|
|
12
27
|
],
|
|
13
28
|
"author": "ASG Compute <aidar@asgcompute.com>",
|
|
14
29
|
"license": "MIT",
|
|
15
30
|
"homepage": "https://asgcard.dev",
|
|
16
|
-
"repository": {
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
31
|
+
"repository": {
|
|
32
|
+
"type": "git",
|
|
33
|
+
"url": "git+https://github.com/ASGCompute/asgcard-public.git"
|
|
34
|
+
},
|
|
35
|
+
"bugs": {
|
|
36
|
+
"url": "https://github.com/ASGCompute/asgcard-public/issues"
|
|
37
|
+
},
|
|
38
|
+
"dependencies": {
|
|
39
|
+
"@asgcard/mcp-server": "^0.6.0"
|
|
40
|
+
},
|
|
41
|
+
"publishConfig": {
|
|
42
|
+
"access": "public"
|
|
43
|
+
}
|
|
20
44
|
}
|