@abstract-foundation/agw-mcp 0.1.0-beta.0

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/package.json ADDED
@@ -0,0 +1,73 @@
1
+ {
2
+ "name": "@abstract-foundation/agw-mcp",
3
+ "version": "0.1.0-beta.0",
4
+ "description": "MCP server for Abstract Global Wallet session-key workflows",
5
+ "license": "MIT",
6
+ "author": "Abstract Foundation",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/Abstract-Foundation/agw-mcp.git"
10
+ },
11
+ "homepage": "https://github.com/Abstract-Foundation/agw-mcp#readme",
12
+ "bugs": {
13
+ "url": "https://github.com/Abstract-Foundation/agw-mcp/issues"
14
+ },
15
+ "keywords": [
16
+ "mcp",
17
+ "modelcontextprotocol",
18
+ "agw",
19
+ "abstract-global-wallet",
20
+ "session-key",
21
+ "wallet",
22
+ "ethereum",
23
+ "cli"
24
+ ],
25
+ "type": "module",
26
+ "exports": {
27
+ ".": "./dist/index.mjs"
28
+ },
29
+ "bin": {
30
+ "agw-mcp": "./dist/index.mjs"
31
+ },
32
+ "engines": {
33
+ "node": ">=18"
34
+ },
35
+ "files": [
36
+ "dist/",
37
+ "README.md",
38
+ "LICENSE"
39
+ ],
40
+ "dependencies": {
41
+ "@abstract-foundation/agw-client": "1.10.0",
42
+ "@modelcontextprotocol/sdk": "^1.26.0",
43
+ "commander": "^12.1.0",
44
+ "open": "^10.1.0",
45
+ "yaml": "^2.8.1"
46
+ },
47
+ "devDependencies": {
48
+ "@types/jest": "^29.5.14",
49
+ "@types/node": "^22.15.21",
50
+ "@typescript-eslint/eslint-plugin": "^8.24.0",
51
+ "@typescript-eslint/parser": "^8.24.0",
52
+ "eslint": "^8.57.0",
53
+ "eslint-config-prettier": "^10.0.1",
54
+ "jest": "^29.7.0",
55
+ "prettier": "^3.5.2",
56
+ "rimraf": "^6.0.1",
57
+ "ts-jest": "^29.2.5",
58
+ "tsdown": "^0.20.3",
59
+ "tsx": "^4.19.3",
60
+ "typescript": "^5.8.3"
61
+ },
62
+ "scripts": {
63
+ "build": "tsdown",
64
+ "dev": "tsx src/index.ts",
65
+ "companion:dev": "tsx companion/start.ts",
66
+ "start": "node dist/index.mjs",
67
+ "test": "jest",
68
+ "test:e2e": "AGW_E2E_ENABLED=1 jest --runInBand test/e2e",
69
+ "check-types": "tsc --noEmit",
70
+ "lint": "eslint src companion test --ext .ts",
71
+ "prettier": "prettier --write \"src/**/*.ts\""
72
+ }
73
+ }