@juvantlabs/m365-graph-mcp-server 0.2.0 → 0.2.1
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.
- package/CHANGELOG.md +34 -0
- package/README.md +20 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -9,6 +9,40 @@ project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
|
|
9
9
|
|
|
10
10
|
---
|
|
11
11
|
|
|
12
|
+
## [0.2.0] - 2026-05-15
|
|
13
|
+
|
|
14
|
+
### Added
|
|
15
|
+
|
|
16
|
+
- **`m365-graph:list_meeting_transcripts`** — list available transcripts for a
|
|
17
|
+
Teams meeting identified by a calendar event ID. Resolves the event's
|
|
18
|
+
`onlineMeeting.joinUrl` → filters `/me/onlineMeetings` by JoinWebUrl →
|
|
19
|
+
lists transcripts via `/me/onlineMeetings/{id}/transcripts`. Returns an
|
|
20
|
+
empty list (not an error) when no transcript is available yet. Requires
|
|
21
|
+
`OnlineMeetings.Read` + `OnlineMeetingTranscript.Read.All` (both delegated,
|
|
22
|
+
admin consent required — see README § Tools).
|
|
23
|
+
- **`m365-graph:get_transcript`** — fetch the text content of a Teams meeting
|
|
24
|
+
transcript. The Graph API returns VTT (WebVTT subtitle format); this tool
|
|
25
|
+
strips timing markers, sequence numbers, and NOTE blocks, returning clean
|
|
26
|
+
readable text capped at 30 000 chars. Handles both ReadableStream and string
|
|
27
|
+
responses from the Graph SDK. Requires `OnlineMeetingTranscript.Read.All`.
|
|
28
|
+
- **`m365-graph:list_events`** — new field `is_online_meeting` (boolean) in
|
|
29
|
+
every event summary. Lets callers identify Teams meetings without a separate
|
|
30
|
+
`get_event` call.
|
|
31
|
+
- **`m365-graph:get_event`** — new field `online_meeting_join_url` (string or
|
|
32
|
+
null) sourced from `onlineMeeting.joinUrl`.
|
|
33
|
+
|
|
34
|
+
### Changed
|
|
35
|
+
|
|
36
|
+
- `DELEGATED_SCOPES` now includes `OnlineMeetings.Read` and
|
|
37
|
+
`OnlineMeetingTranscript.Read.All`. **Re-run `npm run setup`** (or
|
|
38
|
+
`npx @juvantlabs/m365-graph-mcp-server setup`) after upgrading to acquire
|
|
39
|
+
the new scopes. Both require admin consent in the Entra app registration.
|
|
40
|
+
|
|
41
|
+
### Fixed
|
|
42
|
+
|
|
43
|
+
- OData injection: `joinUrl` is now single-quote-escaped before embedding in
|
|
44
|
+
the `JoinWebUrl eq '...'` OData filter string.
|
|
45
|
+
|
|
12
46
|
## [0.1.4] - 2026-05-05
|
|
13
47
|
|
|
14
48
|
### Added
|
package/README.md
CHANGED
|
@@ -17,15 +17,28 @@ real Juvant OS need surfaces; outbound Teams notifications go through
|
|
|
17
17
|
webhooks (Adaptive Cards), not MCP. Per-company instance config binds
|
|
18
18
|
this server in `.juvant/config.json`.
|
|
19
19
|
|
|
20
|
+
## What's new in v0.2.0
|
|
21
|
+
|
|
22
|
+
**Teams meeting transcript support.** Two new read-only tools:
|
|
23
|
+
|
|
24
|
+
- **`m365-graph:list_meeting_transcripts`** — given a calendar event ID, lists available post-meeting transcripts. Returns transcript IDs to pass to `get_transcript`.
|
|
25
|
+
- **`m365-graph:get_transcript`** — fetches the transcript content, strips VTT timing markers, and returns clean readable text (capped at 30 000 chars).
|
|
26
|
+
|
|
27
|
+
Two new delegated scopes required (admin consent — see § Tools):
|
|
28
|
+
`OnlineMeetings.Read` and `OnlineMeetingTranscript.Read.All`.
|
|
29
|
+
**Re-run `npm run setup` after upgrading** to acquire them.
|
|
30
|
+
|
|
31
|
+
See [CHANGELOG.md](CHANGELOG.md) for the full change list.
|
|
32
|
+
|
|
20
33
|
## Status
|
|
21
34
|
|
|
22
|
-
**Published.** v0.
|
|
23
|
-
([`@juvantlabs/m365-graph-mcp-server`](https://www.npmjs.com/package/@juvantlabs/m365-graph-mcp-server))
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
35
|
+
**Published.** v0.2.0 on npm
|
|
36
|
+
([`@juvantlabs/m365-graph-mcp-server`](https://www.npmjs.com/package/@juvantlabs/m365-graph-mcp-server)).
|
|
37
|
+
19 tools across files (OneDrive + SharePoint), Outlook Calendar, and
|
|
38
|
+
Teams meeting transcripts. Published via npm **Trusted Publishing**
|
|
39
|
+
(OIDC-based auth from GitHub Actions; no static `NPM_TOKEN`) with
|
|
40
|
+
provenance attestation; manual approval gate on the `production`
|
|
41
|
+
GitHub Environment guards the publish step.
|
|
29
42
|
|
|
30
43
|
Originally generated by
|
|
31
44
|
[`juvantlabs/juvant-tools`](https://github.com/juvantlabs/juvant-tools)
|
package/package.json
CHANGED