cow (@rapbull)如果你在google antigravity使用mcp時遇到了這個問題 中发帖

遠程mcp在google antigravity通常會報錯: 
「Error: calling “initialize”: EOF」
解決辦法就是安裝到本機執行,將「“command”: “npx”」命令轉為「“command”: “node”」
舉例而言,我使用PluggedinMCP路由mcp,它原本的json格式是這樣的:
{
"mcpServers": {
"PluggedinMCP": {
"command": "npx",
"args": ["-y", "@pluggedin/pluggedin-mcp-proxy@latest"],
"env": {
"PLUGGEDIN_API_KEY": "xxxx"
}
}
}
}

先將pluggin-mcp下載到本地
> npm inst...