Remove broken Microsoft 365 http entries from role plugin manifests#285
Open
eklein-anthropic wants to merge 1 commit into
Open
Remove broken Microsoft 365 http entries from role plugin manifests#285eklein-anthropic wants to merge 1 commit into
eklein-anthropic wants to merge 1 commit into
Conversation
The ms365 / microsoft-365 entries ship M365 as a manual type:http MCP server. That auth path cannot succeed: the M365 server's OAuth client registration only permits the claude.ai callback, so any client-initiated OAuth flow (localhost or claude:// redirect) is rejected by the identity provider before the consent screen ever shows (AADSTS50011). Users connect Microsoft 365 through the claude.ai Connectors directory instead, which uses the registered callback and works. Plugin skills reference tools via ~~category placeholders (see CONNECTORS.md), not the ms365 server key, so no content changes are needed. Bumps each touched plugin's version so the update distributes to existing installs. Co-Authored-By: Claude <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Removes the
ms365/microsoft-365(type: "http") MCP server entries from 10 plugin manifests and bumps each plugin's version so the update distributes to existing installs.Why
These entries can't ever authenticate. The Microsoft 365 MCP server's OAuth client registration only permits the claude.ai callback, so any client-initiated OAuth flow (localhost or
claude://redirect) is rejected by the identity provider withAADSTS50011before the consent screen shows. Telemetry shows an effectively-zero success rate for this path. Microsoft 365 connects through the claude.ai Connectors directory instead, which uses the registered callback and works.No skill/content changes are needed: plugin files reference tools through
~~categoryplaceholders (see CONNECTORS.md), not thems365server key, so the directory connector serves the same categories.Alternative considered
Keep the key with
"url": ""like the existinggmail/google calendarplaceholder entries. We went with removal because the placeholder still materializes a permanently-failed server in/mcp; happy to switch if the placeholder convention is preferred.🤖 Generated with Claude Code