Skip to content

Commit 779fca1

Browse files
Update README.md
add complete python path
1 parent 1ccbbe3 commit 779fca1

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

README.md

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ Add this in your Claude Desktop config file, ref <a href="https://github.com/XGe
288288
{
289289
"mcpServers": {
290290
"xiyan-mcp-server": {
291-
"command": "python",
291+
"command": "/xxx/python",
292292
"args": [
293293
"-m",
294294
"xiyan_mcp_server"
@@ -300,14 +300,15 @@ Add this in your Claude Desktop config file, ref <a href="https://github.com/XGe
300300
}
301301
}
302302
```
303+
**Please note that the Python command here requires the complete path to the Python executable (`/xxx/python`); otherwise, the Python interpreter cannot be found. You can determine this path by using the command `which python`. The same applies to other applications as well.**
303304
### Cline
304305
Prepare the config like [Claude Desktop](#claude-desktop)
305306

306307
### Goose
307308
Add following command in the config, ref <a href="https://github.com/XGenerationLab/xiyan_mcp_server/blob/main/imgs/goose.jpg">Goose config example</a>
308309

309310
```yaml
310-
env YML=path/to/yml python -m xiyan_mcp_server
311+
env YML=path/to/yml /xxx/python -m xiyan_mcp_server
311312
```
312313
### Cursor
313314
Use the same command like [Goose](#goose).
@@ -316,7 +317,7 @@ Use the same command like [Goose](#goose).
316317
### Witsy
317318
Add following in command:
318319
```yaml
319-
python -m xiyan_mcp_server
320+
/xxx/python -m xiyan_mcp_server
320321
```
321322
Add an env: key is YML and value is the path to your yml file.
322323
Ref <a href="https://github.com/XGenerationLab/xiyan_mcp_server/blob/main/imgs/witsy.jpg">Witsy config example</a>

0 commit comments

Comments
 (0)