Skip to content

Commit 5706367

Browse files
committed
setup_qwen mcp error fix
1 parent 4357e95 commit 5706367

File tree

1 file changed

+18
-22
lines changed

1 file changed

+18
-22
lines changed

setup_qwen.py

Lines changed: 18 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -21,33 +21,29 @@ def setup_qwen_framework():
2121
default_settings = {
2222
"mcpServers": {
2323
"serena": {
24-
"command": "uvx",
25-
"args": [
26-
"--from",
27-
"git+https://github.com/oraios/serena",
28-
"serena",
29-
"start-mcp-server",
30-
"--context",
31-
"ide-assistant",
32-
"--project",
33-
str(Path.cwd())
34-
]
24+
"command": "serena-mcp-server",
25+
"args": [
26+
"--context",
27+
"ide-assistant",
28+
"--project",
29+
"/home/mkh0813/transfer_server_all"
30+
]
3531
},
3632
"context7": {
37-
"command": "uvx",
38-
"args": [
39-
"context7-mcp-server",
40-
"start"
41-
]
33+
"command": "npx",
34+
"args": [
35+
"-y",
36+
"@upstash/context7-mcp@latest"
37+
]
4238
},
4339
"sequential": {
44-
"command": "uvx",
45-
"args": [
46-
"sequential-mcp-server",
47-
"start"
48-
]
40+
"command": "npx",
41+
"args": [
42+
"-y",
43+
"@modelcontextprotocol/server-sequential-thinking"
44+
]
4945
}
50-
}
46+
}
5147
}
5248

5349
# Write settings

0 commit comments

Comments
 (0)