m365-roadmap-mcp 0.2.0__py3-none-any.whl → 0.2.1__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,3 +1,3 @@
1
1
  """M365 Roadmap MCP Server - Query the Microsoft 365 Roadmap via MCP."""
2
2
 
3
- __version__ = "0.1.0"
3
+ __version__ = "0.2.1"
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: m365-roadmap-mcp
3
- Version: 0.2.0
3
+ Version: 0.2.1
4
4
  Summary: MCP server for querying the Microsoft 365 Roadmap
5
5
  Project-URL: Homepage, https://github.com/jonnybottles/M365-roadmap-mcp-server
6
6
  Project-URL: Repository, https://github.com/jonnybottles/M365-roadmap-mcp-server
@@ -26,30 +26,15 @@ Description-Content-Type: text/markdown
26
26
 
27
27
  # M365 Roadmap MCP Server
28
28
 
29
- mcp-name: io.github.jonnybottles.m365-roadmap
29
+ <!-- mcp-name: io.github.jonnybottles/m365-roadmap -->
30
30
 
31
31
  A Python-based MCP (Model Context Protocol) server that enables AI agents to query the Microsoft 365 Roadmap programmatically.
32
32
 
33
- ## Quick Setup
34
-
35
- [![Install in VS Code](https://img.shields.io/badge/Install_in-VS_Code-0078d4?style=flat-square&logo=visualstudiocode)](https://vscode.dev/redirect/mcp/install?name=m365-roadmap-mcp&config=%7B%22type%22%3A%20%22stdio%22%2C%20%22command%22%3A%20%22uvx%22%2C%20%22args%22%3A%20%5B%22m365-roadmap-mcp%22%5D%7D)
36
- [![Install in Cursor](https://img.shields.io/badge/Install_in-Cursor-000000?style=flat-square&logo=cursor)](https://cursor.com/docs/context/mcp)
37
- [![Install in Claude Code](https://img.shields.io/badge/Install_in-Claude_Code-9b6bff?style=flat-square&logo=anthropic)](https://code.claude.com/docs/en/mcp)
38
- [![Install in Copilot CLI](https://img.shields.io/badge/Install_in-Copilot_CLI-28a745?style=flat-square&logo=github)](https://docs.github.com/en/copilot/how-tos/use-copilot-agents/use-copilot-cli)
39
-
40
- > **One-click install:** Click VS Code badge for automatic setup (requires `uv` installed)
41
- > **Manual install:** See instructions below for Cursor, Claude Code, Copilot CLI, or Claude Desktop
42
-
43
- ## Features
33
+ ## Strategic Rationale
44
34
 
45
- Provides a single **`search_roadmap`** tool that handles all M365 roadmap queries. Combine any filters:
35
+ For organizations relying on Microsoft 365, Teams, or SharePoint, the "Roadmap" is the single source of truth for upcoming changes. However, navigating the roadmap website manually is cumbersome and disconnected from technical planning workflows. "When is Copilot coming to GCC High?" is a question that affects multi-million dollar contracts and deployment schedules.
46
36
 
47
- - **Keyword search** -- Find features by keyword in title/description
48
- - **Product filter** -- Filter by product tag (Teams, SharePoint, etc.)
49
- - **Status filter** -- Filter by status (In development, Rolling out, Launched)
50
- - **Cloud instance filter** -- Filter by cloud instance (GCC, GCC High, DoD)
51
- - **Feature lookup** -- Retrieve full metadata for a specific roadmap ID
52
- - **Recent additions** -- List features added within the last N days
37
+ Existing research indicates that while RSS feeds exist, there is no tool that allows an AI agent to structurally query this data to answer complex filtering questions. A "Roadmap Scout" MCP server empowers the Agent to act as a release manager, proactively identifying features that enable new capabilities or threaten existing customizations.
53
38
 
54
39
  ## Prompt Examples
55
40
 
@@ -76,6 +61,12 @@ Using `uvx` (requires [uv](https://github.com/astral-sh/uv)):
76
61
  uvx m365-roadmap-mcp
77
62
  ```
78
63
 
64
+ To update to the latest version:
65
+
66
+ ```bash
67
+ uvx m365-roadmap-mcp@latest
68
+ ```
69
+
79
70
  Install uv if you don't have it:
80
71
 
81
72
  ```bash
@@ -90,15 +81,19 @@ Or install with pip (no uv required):
90
81
 
91
82
  ```bash
92
83
  pip install m365-roadmap-mcp
84
+
85
+ # Update to latest
86
+ pip install --upgrade m365-roadmap-mcp
93
87
  ```
88
+ ## Quick Setup
94
89
 
95
- ### From source (for development)
90
+ [![Install in VS Code](https://img.shields.io/badge/Install_in-VS_Code-0078d4?style=flat-square&logo=visualstudiocode)](https://vscode.dev/redirect/mcp/install?name=m365-roadmap-mcp&config=%7B%22type%22%3A%20%22stdio%22%2C%20%22command%22%3A%20%22uvx%22%2C%20%22args%22%3A%20%5B%22m365-roadmap-mcp%22%5D%7D)
91
+ [![Install in Cursor](https://img.shields.io/badge/Install_in-Cursor-000000?style=flat-square&logo=cursor)](https://cursor.com/docs/context/mcp)
92
+ [![Install in Claude Code](https://img.shields.io/badge/Install_in-Claude_Code-9b6bff?style=flat-square&logo=anthropic)](https://code.claude.com/docs/en/mcp)
93
+ [![Install in Copilot CLI](https://img.shields.io/badge/Install_in-Copilot_CLI-28a745?style=flat-square&logo=github)](https://docs.github.com/en/copilot/how-tos/use-copilot-agents/use-copilot-cli)
96
94
 
97
- ```bash
98
- git clone https://github.com/jonnybottles/M365-roadmap-mcp-server.git
99
- cd M365-roadmap-mcp-server
100
- pip install -e ".[dev]"
101
- ```
95
+ > **One-click install:** Click VS Code badge for automatic setup (requires `uv` installed)
96
+ > **Manual install:** See instructions below for Cursor, Claude Code, Copilot CLI, or Claude Desktop
102
97
 
103
98
  ## Client Configuration
104
99
 
@@ -182,6 +177,16 @@ Add to `~/.copilot/mcp-config.json`:
182
177
  }
183
178
  }
184
179
  ```
180
+ ## Features
181
+
182
+ Provides a single **`search_roadmap`** tool that handles all M365 roadmap queries. Combine any filters:
183
+
184
+ - **Keyword search** -- Find features by keyword in title/description
185
+ - **Product filter** -- Filter by product tag (Teams, SharePoint, etc.)
186
+ - **Status filter** -- Filter by status (In development, Rolling out, Launched)
187
+ - **Cloud instance filter** -- Filter by cloud instance (GCC, GCC High, DoD)
188
+ - **Feature lookup** -- Retrieve full metadata for a specific roadmap ID
189
+ - **Recent additions** -- List features added within the last N days
185
190
 
186
191
  ## Data Source
187
192
 
@@ -201,18 +206,6 @@ There is no official Microsoft documentation for this API. It is a public, unaut
201
206
 
202
207
  ---
203
208
 
204
- ## Strategic Rationale
205
-
206
- For organizations relying on Microsoft 365, Teams, or SharePoint, the "Roadmap" is the single source of truth for upcoming changes. However, navigating the roadmap website manually is cumbersome and disconnected from technical planning workflows. "When is Copilot coming to GCC High?" is a question that affects multi-million dollar contracts and deployment schedules.
207
-
208
- Existing research indicates that while RSS feeds exist, there is no tool that allows an AI agent to structurally query this data to answer complex filtering questions. A "Roadmap Scout" MCP server empowers the Agent to act as a release manager, proactively identifying features that enable new capabilities or threaten existing customizations.
209
-
210
- ## Development
211
-
212
- ```bash
213
- pytest
214
- ```
215
-
216
209
  ## License
217
210
 
218
211
  MIT
@@ -1,4 +1,4 @@
1
- m365_roadmap_mcp/__init__.py,sha256=qz6B-DQCFRM2X6JTnpV_csufVZFBugE6D29ieAJUAWw,96
1
+ m365_roadmap_mcp/__init__.py,sha256=ydNG2ztexAZvnKchX4y1FnQ_atvfc1WGa4E8Y45lPjk,96
2
2
  m365_roadmap_mcp/__main__.py,sha256=D9mYXV4TlB361LHfDDwvxsybz0_7EUsseJ3pZkS9AOo,84
3
3
  m365_roadmap_mcp/server.py,sha256=U-vSRQjxmQVpySifzbPFM_eHdZn0cmYygZnoZWeDW0E,2181
4
4
  m365_roadmap_mcp/feeds/__init__.py,sha256=mVerRhM3n8iwoiupqp4rhqOGOpR2WbtA6MErj5pLG3g,38
@@ -7,8 +7,8 @@ m365_roadmap_mcp/models/__init__.py,sha256=Ml_sDvBRyK40Pq4Of0pDExGEBTjyh0QWB4VLu
7
7
  m365_roadmap_mcp/models/feature.py,sha256=NDKZpq4xcWBaujSaI3H7npXTO03Bh4y2BCY5vc4ZUH0,1672
8
8
  m365_roadmap_mcp/tools/__init__.py,sha256=nsNOC46HR1ElncjDck0CjOyeCkh1ZugH8YOiaCg_4dE,34
9
9
  m365_roadmap_mcp/tools/search.py,sha256=yKfWtQ1LzPJSa96OlM8PQBkbDzuW6SPVjmCLAWtFa9U,5817
10
- m365_roadmap_mcp-0.2.0.dist-info/METADATA,sha256=32SDoUmkXoZMbwO8ESuGX2AkcfSqcBv6wb9JKdYCVzI,7456
11
- m365_roadmap_mcp-0.2.0.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
12
- m365_roadmap_mcp-0.2.0.dist-info/entry_points.txt,sha256=GNzyIHa06s1_7BMZzkI4Dsury7aBgUmOYiSXFGNgE6M,66
13
- m365_roadmap_mcp-0.2.0.dist-info/licenses/LICENSE,sha256=NNt5lEWzqGxqVCVmj-VEeWFxXhtbgCNwFhYcCUffWDI,1071
14
- m365_roadmap_mcp-0.2.0.dist-info/RECORD,,
10
+ m365_roadmap_mcp-0.2.1.dist-info/METADATA,sha256=p_WX6PvRNjlvleOWhDRViZI1NNZcUXjdPdenICCqT54,7392
11
+ m365_roadmap_mcp-0.2.1.dist-info/WHEEL,sha256=WLgqFyCfm_KASv4WHyYy0P3pM_m7J5L9k2skdKLirC8,87
12
+ m365_roadmap_mcp-0.2.1.dist-info/entry_points.txt,sha256=GNzyIHa06s1_7BMZzkI4Dsury7aBgUmOYiSXFGNgE6M,66
13
+ m365_roadmap_mcp-0.2.1.dist-info/licenses/LICENSE,sha256=NNt5lEWzqGxqVCVmj-VEeWFxXhtbgCNwFhYcCUffWDI,1071
14
+ m365_roadmap_mcp-0.2.1.dist-info/RECORD,,