@yamo/mcp-server 1.0.4 → 1.0.5

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/README.md +7 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # 🤖 YAMO Chain MCP Server (v1.0.1 - Protocol v0.4)
1
+ # 🤖 YAMO Chain MCP Server [![npm version](https://badge.fury.io/js/@yamo%2Fmcp-server.svg)](https://www.npmjs.com/package/@yamo/mcp-server)
2
2
 
3
3
  This MCP Server acts as a bridge, allowing LLMs to interact with the YAMO Blockchain. It is now powered by `@yamo/core` for robust IPFS handling.
4
4
 
@@ -37,7 +37,7 @@ Add to your Claude Desktop config (`claude_desktop_config.json`):
37
37
  "command": "yamo-mcp-server",
38
38
  "env": {
39
39
  "CONTRACT_ADDRESS": "0x3c9440fa8d604E732233ea17095e14be1a53b015",
40
- "RPC_URL": "https://rpc.sepolia.org",
40
+ "RPC_URL": "https://ethereum-sepolia-rpc.publicnode.com",
41
41
  "PRIVATE_KEY": "0xYOUR_PRIVATE_KEY",
42
42
  "USE_REAL_IPFS": "false",
43
43
  "PINATA_JWT": "optional_if_using_real_ipfs"
@@ -56,7 +56,7 @@ Add to your Claude Desktop config (`claude_desktop_config.json`):
56
56
  "args": ["@yamo/mcp-server"],
57
57
  "env": {
58
58
  "CONTRACT_ADDRESS": "0x3c9440fa8d604E732233ea17095e14be1a53b015",
59
- "RPC_URL": "https://rpc.sepolia.org",
59
+ "RPC_URL": "https://ethereum-sepolia-rpc.publicnode.com",
60
60
  "PRIVATE_KEY": "0xYOUR_PRIVATE_KEY",
61
61
  "USE_REAL_IPFS": "false"
62
62
  }
@@ -71,7 +71,7 @@ Set environment variables and run:
71
71
 
72
72
  ```bash
73
73
  export CONTRACT_ADDRESS=0x3c9440fa8d604E732233ea17095e14be1a53b015
74
- export RPC_URL=https://rpc.sepolia.org
74
+ export RPC_URL=https://ethereum-sepolia-rpc.publicnode.com
75
75
  export PRIVATE_KEY=0xYOUR_PRIVATE_KEY
76
76
 
77
77
  # With global install
@@ -87,7 +87,7 @@ npx @yamo/mcp-server
87
87
 
88
88
  **Configuration:**
89
89
  - Contract: `0x3c9440fa8d604E732233ea17095e14be1a53b015`
90
- - RPC: `https://rpc.sepolia.org` or `https://ethereum-sepolia-rpc.publicnode.com`
90
+ - RPC: `https://ethereum-sepolia-rpc.publicnode.com`
91
91
 
92
92
  **Requirements:**
93
93
  - ✅ Wallet with Sepolia ETH for gas
@@ -155,7 +155,7 @@ If result is `"0x0"`, you need more ETH!
155
155
  **Problem:** RPC_URL points to `http://127.0.0.1:8545` but no local node running
156
156
 
157
157
  **Solution:**
158
- - **For Sepolia:** Change RPC to `https://rpc.sepolia.org`
158
+ - **For Sepolia:** Change RPC to `https://ethereum-sepolia-rpc.publicnode.com`
159
159
  - **For Local:** Start Hardhat node: `cd packages/contracts && npx hardhat node`
160
160
 
161
161
  ### Balance shows 0 but I have ETH
@@ -163,6 +163,6 @@ If result is `"0x0"`, you need more ETH!
163
163
  **Problem:** Wrong network - you might have mainnet ETH, not Sepolia ETH
164
164
 
165
165
  **Solution:**
166
- 1. Verify RPC is Sepolia: `https://rpc.sepolia.org`
166
+ 1. Verify RPC is Sepolia: `https://ethereum-sepolia-rpc.publicnode.com`
167
167
  2. Check balance on Sepolia: https://sepolia.etherscan.io/
168
168
  3. Get Sepolia testnet ETH from faucets (see above)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@yamo/mcp-server",
3
- "version": "1.0.4",
3
+ "version": "1.0.5",
4
4
  "description": "YAMO Protocol v0.4 - Model Context Protocol server for AI agents",
5
5
  "main": "dist/index.js",
6
6
  "type": "commonjs",