@agenttrust-sdk/mcp 0.3.2 → 0.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/dist/index.js +0 -0
- package/package.json +15 -16
- package/scripts/install-claude-desktop.sh +0 -0
package/dist/index.js
CHANGED
|
File without changes
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@agenttrust-sdk/mcp",
|
|
3
|
-
"version": "0.3.
|
|
4
|
-
"description": "MCP server for AgentTrust
|
|
3
|
+
"version": "0.3.3",
|
|
4
|
+
"description": "MCP server for AgentTrust — query and call deployed Solana programs from Claude Desktop / Cursor / any MCP client",
|
|
5
5
|
"author": "AgentTrust Labs (https://agenttrust.tech)",
|
|
6
6
|
"license": "MIT",
|
|
7
7
|
"homepage": "https://github.com/agenttrust-labs/agenttrust/tree/main/mcp#readme",
|
|
@@ -40,25 +40,14 @@
|
|
|
40
40
|
"publishConfig": {
|
|
41
41
|
"access": "public"
|
|
42
42
|
},
|
|
43
|
-
"scripts": {
|
|
44
|
-
"build": "tsc && node scripts/copy-embedded-assets.js",
|
|
45
|
-
"lint": "tsc --noEmit",
|
|
46
|
-
"start": "node dist/index.js",
|
|
47
|
-
"dev": "ts-node src/index.ts",
|
|
48
|
-
"test": "ts-mocha -p ./test/tsconfig.json -t 30000 \"test/**/*.test.ts\"",
|
|
49
|
-
"test:integration": "INTEGRATION=1 ts-mocha -p ./test/tsconfig.json -t 60000 test/integration.test.ts",
|
|
50
|
-
"test:conformance": "pnpm run build && ts-node test/protocol-conformance.ts",
|
|
51
|
-
"prepublishOnly": "pnpm run lint && pnpm run build && pnpm run test && pnpm run test:conformance",
|
|
52
|
-
"publish:dry": "npm publish --dry-run"
|
|
53
|
-
},
|
|
54
43
|
"dependencies": {
|
|
55
|
-
"@agenttrust-sdk/trustgate": "workspace:^",
|
|
56
44
|
"@coral-xyz/anchor": "^0.31.1",
|
|
57
45
|
"@modelcontextprotocol/sdk": "^1.29.0",
|
|
58
46
|
"@solana/web3.js": "^1.98.0",
|
|
59
47
|
"bs58": "^6.0.0",
|
|
60
48
|
"zod": "^3.25.76",
|
|
61
|
-
"zod-to-json-schema": "^3.23.5"
|
|
49
|
+
"zod-to-json-schema": "^3.23.5",
|
|
50
|
+
"@agenttrust-sdk/trustgate": "^0.3.1"
|
|
62
51
|
},
|
|
63
52
|
"devDependencies": {
|
|
64
53
|
"@types/chai": "^4.3.0",
|
|
@@ -69,5 +58,15 @@
|
|
|
69
58
|
"ts-mocha": "^10.0.0",
|
|
70
59
|
"ts-node": "^10.9.2",
|
|
71
60
|
"typescript": "^5.6.0"
|
|
61
|
+
},
|
|
62
|
+
"scripts": {
|
|
63
|
+
"build": "tsc && node scripts/copy-embedded-assets.js",
|
|
64
|
+
"lint": "tsc --noEmit",
|
|
65
|
+
"start": "node dist/index.js",
|
|
66
|
+
"dev": "ts-node src/index.ts",
|
|
67
|
+
"test": "ts-mocha -p ./test/tsconfig.json -t 30000 \"test/**/*.test.ts\"",
|
|
68
|
+
"test:integration": "INTEGRATION=1 ts-mocha -p ./test/tsconfig.json -t 60000 test/integration.test.ts",
|
|
69
|
+
"test:conformance": "pnpm run build && ts-node test/protocol-conformance.ts",
|
|
70
|
+
"publish:dry": "npm publish --dry-run"
|
|
72
71
|
}
|
|
73
|
-
}
|
|
72
|
+
}
|
|
File without changes
|