@yamo/mcp-server 1.3.12 → 1.3.14

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.
Files changed (2) hide show
  1. package/dist/index.js +1 -0
  2. package/package.json +3 -3
package/dist/index.js CHANGED
@@ -412,6 +412,7 @@ class YamoMcpServer {
412
412
  success: true,
413
413
  blockId,
414
414
  transactionHash: tx.hash,
415
+ contentHash: contentHash, // Returned for easier chain linking
415
416
  blockNumber: receipt.blockNumber,
416
417
  gasUsed: receipt.gasUsed.toString(),
417
418
  effectiveGasPrice: receipt.effectiveGasPrice?.toString(),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamo/mcp-server",
3
- "version": "1.3.12",
3
+ "version": "1.3.14",
4
4
  "description": "YAMO Protocol v0.4 - Model Context Protocol server for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",
@@ -14,7 +14,7 @@
14
14
  "LICENSE"
15
15
  ],
16
16
  "scripts": {
17
- "build": "tsc",
17
+ "build": "tsc && chmod +x dist/index.js",
18
18
  "prepublishOnly": "npm run build",
19
19
  "start": "node dist/index.js",
20
20
  "dev": "ts-node src/index.ts",
@@ -45,7 +45,7 @@
45
45
  },
46
46
  "dependencies": {
47
47
  "@modelcontextprotocol/sdk": "^1.25.1",
48
- "@yamo/core": "^1.2.13",
48
+ "@yamo/core": "^1.2.15",
49
49
  "axios": "^1.13.2",
50
50
  "dotenv": "^17.2.3",
51
51
  "form-data": "^4.0.5"