@agent-shield/mcp 0.2.1 → 0.2.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.
- package/README.md +6 -0
- package/package.json +17 -10
package/README.md
CHANGED
|
@@ -119,6 +119,12 @@ AGENTSHIELD_WALLET_PATH=~/.config/solana/id.json node dist/index.js
|
|
|
119
119
|
- **SDK**: Wraps `AgentShieldClient` from `@agent-shield/sdk` — every tool delegates to a client method
|
|
120
120
|
- **Error handling**: All 37 Anchor error codes mapped to human-readable messages with actionable suggestions
|
|
121
121
|
|
|
122
|
+
## Support
|
|
123
|
+
|
|
124
|
+
- X/Twitter: [@MightieMags](https://x.com/MightieMags)
|
|
125
|
+
- Telegram: [MightyMags](https://t.me/MightyMags)
|
|
126
|
+
- Issues: [GitHub Issues](https://github.com/Kaleb-Rupe/agentshield/issues)
|
|
127
|
+
|
|
122
128
|
## License
|
|
123
129
|
|
|
124
130
|
MIT
|
package/package.json
CHANGED
|
@@ -1,12 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agent-shield/mcp",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.2",
|
|
4
|
+
"author": "Kaleb Rupe (https://x.com/MightieMags)",
|
|
5
|
+
"homepage": "https://github.com/Kaleb-Rupe/agentshield#readme",
|
|
6
|
+
"bugs": {
|
|
7
|
+
"url": "https://github.com/Kaleb-Rupe/agentshield/issues",
|
|
8
|
+
"email": "https://t.me/MightyMags"
|
|
9
|
+
},
|
|
4
10
|
"description": "MCP server for AgentShield — manage on-chain vaults and enforce policies via AI tools",
|
|
5
11
|
"main": "dist/index.js",
|
|
6
12
|
"types": "dist/index.d.ts",
|
|
7
13
|
"bin": {
|
|
8
14
|
"agent-shield-mcp": "dist/index.js"
|
|
9
15
|
},
|
|
16
|
+
"scripts": {
|
|
17
|
+
"build": "tsc",
|
|
18
|
+
"clean": "rm -rf dist",
|
|
19
|
+
"test": "mocha --require ts-node/register 'tests/*.test.ts' 'tests/**/*.test.ts' --timeout 30000",
|
|
20
|
+
"prepublishOnly": "npm run build"
|
|
21
|
+
},
|
|
10
22
|
"files": [
|
|
11
23
|
"dist/**/*",
|
|
12
24
|
"README.md"
|
|
@@ -31,6 +43,8 @@
|
|
|
31
43
|
}
|
|
32
44
|
},
|
|
33
45
|
"devDependencies": {
|
|
46
|
+
"@agent-shield/sdk": "workspace:*",
|
|
47
|
+
"@agent-shield/custody-crossmint": "workspace:*",
|
|
34
48
|
"@coral-xyz/anchor": "^0.32.1",
|
|
35
49
|
"@solana/spl-token": "^0.4.0",
|
|
36
50
|
"@solana/web3.js": "^1.95.0",
|
|
@@ -42,9 +56,7 @@
|
|
|
42
56
|
"mocha": "^10.3.0",
|
|
43
57
|
"sinon": "^17.0.1",
|
|
44
58
|
"ts-node": "^10.9.2",
|
|
45
|
-
"typescript": "^5.3.3"
|
|
46
|
-
"@agent-shield/sdk": "0.3.0",
|
|
47
|
-
"@agent-shield/custody-crossmint": "0.1.1"
|
|
59
|
+
"typescript": "^5.3.3"
|
|
48
60
|
},
|
|
49
61
|
"keywords": [
|
|
50
62
|
"mcp",
|
|
@@ -62,10 +74,5 @@
|
|
|
62
74
|
"type": "git",
|
|
63
75
|
"url": "https://github.com/Kaleb-Rupe/agentshield",
|
|
64
76
|
"directory": "packages/mcp"
|
|
65
|
-
},
|
|
66
|
-
"scripts": {
|
|
67
|
-
"build": "tsc",
|
|
68
|
-
"clean": "rm -rf dist",
|
|
69
|
-
"test": "mocha --require ts-node/register 'tests/*.test.ts' 'tests/**/*.test.ts' --timeout 30000"
|
|
70
77
|
}
|
|
71
|
-
}
|
|
78
|
+
}
|