AzureAppConfigurationHelper-MCP
by zhiyuanliang-ms
AzureAppConfigurationHelper-MCP is an MCP server designed to assist developers in working with Azure App Configuration. It provides tools and utilities to streamline the development process.
View on GitHub
Last updated: N/A
AzureAppConfigurationHelper-MCP
azure-appconfiguration-helper-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"
],
}
}
}
}