ZedでAzure MCP Serverを利用する

残念ながら公式ページに設定方法が出てないが、もちろん利用は可能。

npmでインストールする。

npm install @azure/mcp@latest

Zedで[Model Context Protocol (MCP) Servers] -> [+ Add Server] -> [Add Custom Server]で以下。

{
  /// The name of your MCP server
  "Azure MCP Server": {
    /// The command which runs the MCP server
    "command": "npx",
    /// The arguments to pass to the MCP server
    "args": ["-y","@azure/mcp@latest","server","start"],
    /// The environment variables to set
    "env": {}
  }
}