JetBrains / JetBrains/mcp-server-plugin
args are being splitted automatically
- Dominant language
- Kotlin
- Stars
- 134
- Forks
- 42
- PR merge metrics
- No merged PRs in 30d
Description
Hello,
In the plugin version 1.0.30
The below configuration:
```
"desktop-commander": {
"command": "bash",
"args": [
"-c",
"source $HOME/.nvm/nvm.sh && nvm use --silent 23 && npx -y @wonderwhy-er/desktop-commander"
]
}
```
Is transformed into
```
"desktop-commander": {
"command": "bash",
"args": [
"-c",
"source",
"$HOME/.nvm/nvm.sh",
"\u0026\u0026",
"nvm",
"use",
"--silent",
"23",
"\u0026\u0026",
"npx",
"-y",
"@wonderwhy-er/desktop-commander"
]
}
```
Which is IMO wrong.
Contributor guide
No contributing guide indexed for this repository
Assessment
This issue has not been assessed yet.