MCP注册表(静态)
这是一个最小的静态MCP注册表站点,它公开了一个仅包含GitHub Copilot(Cloud)MCP条目的注册表文件。
文件夹:
registry.json--注册表文件(仅GitHub Cloud MCP条目)。index.html--显示条目的简单UI。styles.css--简约风格。
部署到Azure存储静态网站(快速):
- 创建资源组和存储帐户:
az group create -n my-rg -l westus2
az storage account create -n mystorageacct$RANDOM -g my-rg -l westus2 --sku Standard_LRS --kind StorageV2- 启用静态网站和上传文件:
az storage blob service-properties update --account-name --static-website --index-document index.html
az storage blob upload-batch -s ./ -d '$web' --account-name - 端点将是
https://.z13.web.core.windows.net(或类似)-检查门户或az storage account show确切的URL。
使用Azure静态Web应用程序进行部署(来自GitHub):按照Azure静态Web App GitHub Action设置进行静态站点存储库的部署。
注: registry.json 故意只包含所请求的GitHub Copilot(Cloud)MCP条目。
