-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.43 KB
/
Copy pathpackage.json
File metadata and controls
60 lines (60 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "circle-agent-stack-mcp",
"version": "0.1.3",
"description": "MCP server for Circle Agent Stack — wallet management, USDC transfers, and x402 nanopayments via tool calls",
"keywords": [
"mcp",
"circle",
"usdc",
"x402",
"nanopayments",
"ai-agents",
"payments"
],
"license": "MIT",
"type": "module",
"main": "dist/server.js",
"files": [
"dist",
"examples",
"README.md",
"LICENSE"
],
"bin": {
"circle-agent-stack-mcp": "dist/server.js",
"circle-agent-stack-mcp-http": "dist/http-server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx watch src/server.ts",
"dev:http": "tsx watch src/http-server.ts",
"start": "node dist/server.js",
"start:http": "node dist/http-server.js",
"test": "vitest run",
"typecheck": "tsc --noEmit",
"prepublishOnly": "npm run build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.11.0",
"@x402/core": "^2.14.0",
"@x402/evm": "^2.14.0",
"@x402/express": "^2.14.0",
"express": "^4.21.0",
"zod": "^3.24.0"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.0.0",
"tsx": "^4.19.0",
"typescript": "^5.8.0",
"vitest": "^4.1.7"
},
"engines": {
"node": ">=20"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kinance/circle-agent-stack-mcp.git"
},
"mcpName": "io.github.kinance/circle-agent-stack-mcp"
}