Back to MCP directory
publicPublicdnsLocal runtime

AzureAppConfigurationHelper-MCP

一个帮助开发者使用Azure应用配置的MCP服务器工具

article

README

🚀 AzureAppConfigurationHelper - MCP

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 问题页面寻求解决方案。

help

Runtime guide

cloud

Hosted runtime

Hosted servers run from a provider-managed environment. You usually connect the MCP client to the hosted endpoint or follow the provider's authorization flow, without keeping a local process alive

  1. Open provider connection page
  2. Authorize or copy endpoint
  3. Connect from your MCP client
terminal

Local runtime / other methods

Local servers run on your own machine or infrastructure. You normally copy the server_config into your MCP client, install the required package, and provide env variables from env_schema when needed

  1. Copy server_config
  2. Install required package
  3. Fill env variables and restart client