Let's say I want to start an instance of DesktopCommander MCP on my local machine and then connect to it from my other local machine, how can I do that? The config below only allows to access on localhost itself which is not convenient in all use cases. Can we use Streamable HTTP? Couldn't find any clue in docs, sorry.
So along side of this,
{
"mcpServers": {
"desktop-commander": {
"command": "npx",
"args": ["-y", "@wonderwhy-er/desktop-commander@latest"]
}
}
}
Have something like that:
{
"mcpServers": {
"desktop-commander": {
"url": "http://192.168.1.100:8888/api/mcp",
"transport": "streamable-http"
}
}
}
Let's say I want to start an instance of DesktopCommander MCP on my local machine and then connect to it from my other local machine, how can I do that? The config below only allows to access on localhost itself which is not convenient in all use cases. Can we use
Streamable HTTP? Couldn't find any clue in docs, sorry.So along side of this,
Have something like that: