@@ -32,51 +32,55 @@ Find your wallet at:
3232
3333Complete the ** Wallet Setup** above, then choose your preferred installation method:
3434
35- | Method | Description | Best For |
36- | ---------------------------------------------------------------------------- | ------- --------------------------- | ---------------------------------- |
37- | ** [ 3. NPX Configuration] ( #3-method-a-npx-configuration-for-claude-desktop ) ** ⭐ | Direct Claude Desktop setup | Quick Claude Desktop integration |
38- | ** [ 4. Claude Code CLI] ( #4-method-b-claude-code-cli-setup ) ** | CLI integration setup | Developers using Claude Code |
39- | ** [ 5. Local Node.js] ( #5-method-c-local-nodejs-setup ) ** | Development from source | Local development & debugging |
40- | ** [ 6. Docker] ( #6-method-d-docker-setup ) ** | Containerized deployment | Production & isolated environments |
35+ | Method | Description | Best For |
36+ | ------------------------------------------------------------------------------- | --------------------------- | ---------------------------------- |
37+ | ** [ 3. NPX Configuration] ( #3-method-a-npx-configuration-for-claude-desktop ) ** ⭐ | Direct Claude Desktop setup | Quick Claude Desktop integration |
38+ | ** [ 4. Claude Code CLI] ( #4-method-b-claude-code-cli-setup ) ** | CLI integration setup | Developers using Claude Code |
39+ | ** [ 5. Local Node.js] ( #5-method-c-local-nodejs-setup ) ** | Development from source | Local development & debugging |
40+ | ** [ 6. Docker] ( #6-method-d-docker-setup ) ** | Containerized deployment | Production & isolated environments |
4141
4242---
4343
4444## 3. Method A: NPX Configuration for Claude Desktop
4545
4646** Prerequisites:**
47+
4748- [ Node.js] ( https://nodejs.org/ ) (version 18 or higher)
4849- npm (version 9 or higher)
4950- [ Claude Desktop] ( https://claude.ai/download )
5051
5152** Setup Steps:**
5253
53541 . ** Open Claude Desktop configuration:**
55+
5456 - Open Claude Desktop → ** Developer > Edit Config**
5557
56582 . ** Add configuration to ` claude_desktop_config.json ` :**
57-
58- * With wallet file (from Section 1):*
59+
60+ _ With wallet file (from Section 1):_
61+
5962 ``` json
6063 {
6164 "mcpServers" : {
6265 "iexec-mcp-server" : {
6366 "command" : " npx" ,
64- "args" : [" -y" , " @paypes/iexec- mcp@latest" ],
67+ "args" : [" -y" , " @paypes/mcp-server @latest" ],
6568 "env" : {
6669 "PRIVATE_KEY_PATH" : " /absolute/path/to/wallet.json"
6770 }
6871 }
6972 }
7073 }
7174 ```
72-
73- * With direct private key:*
75+
76+ _ With direct private key:_
77+
7478 ``` json
7579 {
7680 "mcpServers" : {
7781 "iexec-mcp-server" : {
7882 "command" : " npx" ,
79- "args" : [" -y" , " @paypes/iexec- mcp@latest" ],
83+ "args" : [" -y" , " @paypes/mcp-server @latest" ],
8084 "env" : {
8185 "PRIVATE_KEY" : " 0xYOUR_PRIVATE_KEY"
8286 }
@@ -92,26 +96,30 @@ Complete the **Wallet Setup** above, then choose your preferred installation met
9296## 4. Method B: Claude Code CLI Setup
9397
9498** Prerequisites:**
99+
95100- [ Node.js] ( https://nodejs.org/ ) (version 18 or higher)
96101- npm (version 9 or higher)
97102
98103** Setup Steps:**
99104
1001051 . ** Install Claude Code CLI:**
106+
101107 ``` bash
102108 npm install -g @anthropic-ai/claude-code
103109 ```
104110
1051112 . ** Add iExec MCP server:**
106-
107- * With wallet file (from Section 1):*
112+
113+ _ With wallet file (from Section 1):_
114+
108115 ``` bash
109- claude mcp add iexec-mcp --env PRIVATE_KEY_PATH=~ /Library/Ethereum/keystore/wallet.json -- npx @paypes/iexec- mcp@latest run
116+ claude mcp add iexec-mcp --env PRIVATE_KEY_PATH=~ /Library/Ethereum/keystore/wallet.json -- npx @paypes/mcp-server @latest run
110117 ```
111-
112- * With direct private key:*
118+
119+ _ With direct private key:_
120+
113121 ``` bash
114- claude mcp add iexec-mcp --env PRIVATE_KEY=0xYOUR_PRIVATE_KEY -- npx @paypes/iexec- mcp@latest run
122+ claude mcp add iexec-mcp --env PRIVATE_KEY=0xYOUR_PRIVATE_KEY -- npx @paypes/mcp-server @latest run
115123 ```
116124
1171253 . ** Run Claude:**
@@ -124,6 +132,7 @@ Complete the **Wallet Setup** above, then choose your preferred installation met
124132## 5. Method C: Local Node.js Setup
125133
126134** Prerequisites:**
135+
127136- [ Node.js] ( https://nodejs.org/ ) (version 18 or higher)
128137- npm (version 9 or higher)
129138- [ Git] ( https://git-scm.com/ )
@@ -145,12 +154,14 @@ npm run build
145154### 5.2. Integrate with Claude Desktop (Optional)
146155
1471561 . ** Open Claude Desktop configuration:**
157+
148158 - Download and install [ Claude Desktop] ( https://claude.ai/download ) if you haven't already
149159 - Open Claude Desktop → ** Developer > Edit Config**
150160
1511612 . ** Add configuration to ` claude_desktop_config.json ` :**
152-
153- * With wallet file (from Section 1):*
162+
163+ _ With wallet file (from Section 1):_
164+
154165 ``` json
155166 {
156167 "mcpServers" : {
@@ -164,8 +175,9 @@ npm run build
164175 }
165176 }
166177 ```
167-
168- * With direct private key:*
178+
179+ _ With direct private key:_
180+
169181 ``` json
170182 {
171183 "mcpServers" : {
@@ -187,31 +199,36 @@ npm run build
187199## 6. Method D: Docker Setup
188200
189201** Prerequisites:**
202+
190203- [ Docker] ( https://www.docker.com/get-started ) installed
191204- [ Claude Desktop] ( https://claude.ai/download ) (optional)
192205
193206** Setup Steps:**
194207
195208### 6.1. Run the Server with Docker
196209
197- * With wallet file (from Section 1):*
210+ _ With wallet file (from Section 1):_
211+
198212``` bash
199213docker run -i --rm --init -e PRIVATE_KEY_PATH=/absolute/path/to/wallet.json iexec/mcp-server:latest
200214```
201215
202- * With direct private key:*
216+ _ With direct private key:_
217+
203218``` bash
204219docker run -i --rm --init -e PRIVATE_KEY=0xYOUR_PRIVATE_KEY iexec/mcp-server:latest
205220```
206221
207222### 6.2. Integrate with Claude Desktop (Optional)
208223
2092241 . ** Open Claude Desktop configuration:**
225+
210226 - Open Claude Desktop → ** Developer > Edit Config**
211227
2122282 . ** Add configuration to ` claude_desktop_config.json ` :**
213-
214- * With wallet file (from Section 1):*
229+
230+ _ With wallet file (from Section 1):_
231+
215232 ``` json
216233 {
217234 "mcpServers" : {
@@ -230,8 +247,9 @@ docker run -i --rm --init -e PRIVATE_KEY=0xYOUR_PRIVATE_KEY iexec/mcp-server:lat
230247 }
231248 }
232249 ```
233-
234- * With direct private key:*
250+
251+ _ With direct private key:_
252+
235253 ``` json
236254 {
237255 "mcpServers" : {
0 commit comments