AzureAppConfigurationHelper-MCP
0
The AzureAppConfigurationHelper-MCP is an MCP server designed to assist developers in configuring applications using Azure App Configuration, making the integration process easier.
AzureAppConfigurationHelper-MCP
An MCP server that helps people develop application with Azure App Configuration.
Usage
VS Code insider
"mcp": {
"inputs": [],
"servers": {
"azure-appconfig-helper": {
"command":"cmd",
"args": [
"/c",
"npx",
"-y",
"azure-appconfiguration-helper-mcp"
]
}
}
}
npx issue on Widnows
On Windows, MCP servers may fail to connect with npx
.
To workaround, use cmd /c npx
instead of npx
{
"mcp": {
"inputs": [],
"servers": {
"mcp-server-code-runner": {
"command": "cmd",
"args": [
"/c",
"npx",
"-y",
"azure-appconfiguration-helper-mcp"
],
}
}
}
}