AzureAppConfigurationHelper - MCP 是一个 MCP 服务器,可助力开发者借助 Azure 应用配置进行应用程序开发。
在你的 VS Code Insider 中添加以下配置:
"mcp": {
"inputs": [],
"servers": {
"azure-appconfig-helper": {
"command":"cmd",
"args": [
"/c",
"npx",
"-y",
"azure-appconfiguration-helper-mcp"
]
}
}
}
在 Windows 系统中,MCP 服务器可能会因为使用npx而连接失败(参考此问题)。
为了解决这个问题,请使用cmd /c npx代替npx:
{
"mcp": {
"inputs": [],
"servers": {
"mcp-server-code-runner": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"azure-appconfiguration-helper-mcp"
],
}
}
}
}
⚠️ 重要提示
在 Windows 系统中使用 MCP 服务器时,直接使用
npx可能会导致连接失败,可参考上述高级用法解决该问题。
💡 使用建议
若在使用过程中遇到问题,可参考相关 GitHub 问题页面寻求解决方案。