Microsoft has quietly made it possible to ask Copilot, Claude, or any MCP-compatible AI client about the latest Microsoft 365 features and Azure changes—and get an answer drawn straight from the official source. The company recently published a public, no-cost Model Context Protocol (MCP) server that connects AI assistants directly to its Microsoft 365 Roadmap and Azure Updates feeds. It’s called the Microsoft Release Communications (MRC) MCP Server, and it doesn’t require a license or authentication.
For IT administrators, developers, and power users who spend hours each week tracking release notes across multiple dashboards, the server offers a single, conversational way to surface what’s rolling out, what’s retiring, and what’s next—all from inside the tools they already use. But it’s not a drop-in replacement for Message center or Service Health, and misusing it could lead to confusion about what actually affects your tenant.
This is what the server does, how to configure it, and what you should never trust it to decide.
What exactly is the MRC MCP Server?
MCP is an open protocol that allows AI models to securely connect to external tools and data sources. Microsoft’s MRC MCP Server is a remote service that sits at https://www.microsoft.com/releasecommunications/mcp and exposes four read-only tools to any compatible client:
- get_recent_roadmaps – lists up to 50 Microsoft 365 Roadmap items, with filtering by product, platform, status, date, and more.
- get_roadmap_by_id – retrieves a single roadmap item in full detail.
- get_recent_azure_updates – lists up to 50 Azure Update posts, similarly filterable.
- get_azure_update_by_id – retrieves a specific Azure update entry.
There’s no API key, no login, and no licensing fee. Microsoft states in its documentation that “the MRC MCP Server is publicly available and free to use,” though users are bound by the Microsoft API Terms of Use. The underlying data—the same information that already lives on the public Microsoft 365 Roadmap website and Azure Updates portal—refreshes once a day.
You can connect to the server from VS Code, Visual Studio, GitHub Copilot, Claude Desktop, Cursor, and any other MCP-compatible environment. The high-level setup is the same everywhere: add the endpoint to your client’s configuration, then tell the AI model to use it when answering roadmap or update questions.
How to get started in under 5 minutes
For most users, the quickest path is through VS Code with GitHub Copilot in Agent mode. Here’s the condensed setup:
- Open VS Code and ensure you have GitHub Copilot enabled.
- Navigate to the MCP server configuration. In VS Code, this is typically done via the Settings JSON or the built-in MCP panel. Add the following snippet:
json { "servers": { "MRC-MCP-Server": { "type": "http", "url": "https://www.microsoft.com/releasecommunications/mcp" } } } - In Copilot Chat, switch to Agent mode, then open the “Configure Tools” menu. Make sure the MRC tools—especially
get_recent_roadmapsandget_recent_azure_updates—are enabled. Deselecting tools you won’t use can reduce noise. - Now ask a question. For example: “According to the Microsoft 365 Roadmap, which Teams features are releasing in June?” or “Show me all Azure retirements scheduled for Q3 2025.”
If the AI doesn’t automatically use the MCP server, you may need to add a system-level instruction. Microsoft recommends something like:
You have access to MCP tools provided by the Release Communications MCP Server. When handling questions about Microsoft 365 Roadmap features or Azure service updates, use these tools to retrieve the most current and authoritative release information before responding.
In VS Code, you can paste this into the “Prompt Instructions” field under Settings. Other clients have similar options, usually found in advanced or developer settings.
The key is to be explicit: mention “Microsoft 365 Roadmap” or “Azure Updates” in your prompt. A vague “What’s new in Teams?” may not trigger the tool.
Where it fits—and where it doesn’t—in your admin toolbox
The MRC server is best thought of as a research assistant. It can dramatically speed up the time it takes to find, group, and summarize public release announcements. Instead of opening three browser tabs to comb through Roadmap, Message center, and Azure Updates, you can ask a single question and get a consolidated list. For example, a Microsoft 365 admin could ask:
- “List all SharePoint features rolling out to Targeted Release this month with IDs over 120000.”
- “Which Azure AI services became Generally Available in the last quarter?”
- “Create a draft email for my compliance team summarizing the latest Microsoft Purview items from the roadmap.”
But there’s a hard boundary: the server only knows about public, cross-tenant information. It has no access to your organization’s Message center posts, Service Health incidents, or tenant-specific configurations. That means you can’t ask:
- “Is this feature enabled for my users?”
- “Will this Azure retirement affect my VM?”
- “Should I approve this change request?”
Those questions require tenant context and human judgment. After retrieving a roadmap item with an AI summary, you must still validate it against the actual Message center communication in the Microsoft 365 admin center. The server’s output is a starting point, not the final word.
For Azure teams, the distinction is similar: the server can surface upcoming retirements or new previews, but it won’t tell you whether those changes impact your deployed services. That’s still a job for Azure Service Health and your own analysis.
The bigger picture: AI meets enterprise change management
Microsoft has been pushing AI more aggressively into IT administration for the past two years. Copilot in the admin centers, AI-generated message summaries, and automated policy recommendations are all part of a broader effort to help organizations keep pace with the growing volume of cloud updates. The MRC MCP Server is the latest piece of that puzzle—it turns the existing public release information into a machine-readable stream that any AI client can use.
The challenge, as WindowsForum has noted in prior coverage, is that faster information doesn’t always mean clearer decision-making. A flood of AI-summarized roadmap items could just as easily overwhelm an already busy team. That’s why Microsoft’s own documentation frames the server as a complement to, not a replacement for, the structured change management processes many enterprises already have.
It’s also worth noting that the server marks the first time Microsoft has offered a direct MCP endpoint for its own release data. MCP is an open standard being adopted by a range of AI clients, and Microsoft’s move signals a commitment to integrating AI agents into the everyday flow of IT work. Expect more such endpoints in the future—perhaps even for Message center or Service Health, if the model proves successful.
Smart ways to put it to work right now
Even with its limitations, early adopters can find immediate value. Here are a few practical, low-risk use cases:
- Weekly digest generation: Set up a recurring prompt to pull the latest roadmap items for Teams, Exchange, SharePoint, and OneDrive, then distribute the AI-generated summary to service owners for triage.
- Retirement watch: Ask the server for all Azure retirements scheduled in the next 90 days, then cross-reference with your asset inventory. The AI can even draft a notification template for each affected service.
- Release note comparison: When a new feature appears in Message center, ask the server to retrieve the corresponding roadmap item to see the original public announcement and any known issues or prerequisites.
- Developer awareness: For software teams using Visual Studio or VS Code, the MCP server can be integrated directly into the development environment. A developer working on a Teams app could query upcoming platform changes without leaving the IDE.
For each of these, the workflow should always end with a human validating the tenant-specific impact. Never take an AI summary as approval to deploy or notify users. Use the output to populate your change management system, not to bypass it.
Microsoft also advises against mixing prompts that combine sensitive internal data with public queries. Even though the server requires no authentication, the prompt itself might be processed by the AI client’s cloud service, so it’s best to keep the session focused strictly on public release research.
What to watch next
The MRC MCP Server is clearly a first step. If it gains traction, Microsoft is likely to expand the tools and data sources it exposes through MCP. Tenant-scoped endpoints for Message center or Service Health, with appropriate authentication, would be a natural next step—turning the server from a research aid into a genuine change-management accelerator.
For now, the message is simple: Microsoft has handed you a direct line to its public release information via the AI tools you already use. That’s a significant time-saver, but it demands the same discipline you apply to any data source. Verify before you act, and keep your change controls firmly in human hands.
The server is available today. Try it with a narrow, read-only pilot—and let the AI handle the searching while you make the decisions.