Skip to content

Conversation

@tmeschter
Copy link

Add the Azure plugin to the marketplace.

We may be getting ahead of ourselves but the Azure SDK team is very excited about the official GitHub Copilot plugins collection. We've started work on a Claude plugin, consisting of the Azure MCP server and related agents and skills, and we're hoping we can re-use it in GitHub Copilot.

I realize this PR is probably not ready to go as-is, but we're hoping to get a conversation going. Thank you!

Add the Azure plugin to the marketplace.
Copilot AI review requested due to automatic review settings January 24, 2026 00:32
@tmeschter
Copy link
Author

FYI @kvenkatrajan.

Copy link

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This pull request adds an Azure plugin entry to the marketplace.json file, enabling the Azure MCP server to be available in the GitHub Copilot plugins collection. The PR author acknowledges this is an early submission to start a conversation about reusing their Claude plugin work with GitHub Copilot.

Changes:

  • Added Azure plugin configuration to marketplace.json with a URL-based source pointing to the GitHub-Copilot-for-Azure repository

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment on lines +14 to +17
"source": {
"source": "url",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
},
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The source structure is inconsistent with the existing workiq plugin. The workiq plugin uses a simple string value for the source field (line 22: "source": "plugins/workiq"), while this Azure plugin uses an object with nested "source" and "url" fields. Consider either following the same pattern as workiq with a local path, or clarify if the nested object structure is intended for URL-based sources. If this is a new pattern for external plugins, it should be documented.

Suggested change
"source": {
"source": "url",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
},
"source": "plugins/azure",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude",

Copilot uses AI. Check for mistakes.
"name": "azure",
"source": {
"source": "url",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The URL points to a GitHub repository tree view (https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude) rather than a plugin artifact or distributable package. GitHub tree URLs are web UI links, not programmatic sources. If plugins need to be fetched from external repositories, the URL should point to a raw file, release artifact, or API endpoint that can be consumed programmatically. Consider using a URL like a release tarball, a raw file URL, or an npm package reference if the plugin is published.

Suggested change
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/archive/refs/heads/main.zip"

Copilot uses AI. Check for mistakes.
Comment on lines +12 to +18
{
"name": "azure",
"source": {
"source": "url",
"url": "https://github.com/microsoft/GitHub-Copilot-for-Azure/tree/main/claude"
},
"description": "Azure plugin for GitHub Copilot."
Copy link

Copilot AI Jan 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The Azure plugin entry is missing the "version" field that is present in the workiq plugin (line 24). For consistency and to support versioning of plugins, consider adding a version field to the Azure plugin entry. If the version field is optional, this can be ignored, but if it's required for proper plugin management, it should be added.

Copilot uses AI. Check for mistakes.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant