@frustrated/ms-graph-mcp 0.1.5 → 0.1.6
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/README.md +4 -3
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -30,10 +30,11 @@ This package is designed to be integrated as a connection within the Manus UI, a
|
|
|
30
30
|
Before using the MCP CLI, you need to initialize it once to authenticate with your Microsoft account. This process will guide you through granting necessary permissions.
|
|
31
31
|
|
|
32
32
|
```bash
|
|
33
|
-
bunx --bun
|
|
33
|
+
bunx --bun @frustrated/ms-graph-mcp init
|
|
34
34
|
```
|
|
35
35
|
|
|
36
36
|
This will:
|
|
37
|
+
|
|
37
38
|
1. Start a local HTTP server to receive the OAuth callback.
|
|
38
39
|
2. Print an authentication URL — open it in your browser to sign in.
|
|
39
40
|
3. Grant consent for the requested scopes.
|
|
@@ -51,8 +52,8 @@ bunx --bun github:usually-frustrated/ms-graph-mcp run
|
|
|
51
52
|
|
|
52
53
|
The Microsoft Graph MCP CLI exposes the following tools:
|
|
53
54
|
|
|
54
|
-
|
|
55
|
-
|
|
55
|
+
- **`mail`**: Manage email communications (e.g., list messages).
|
|
56
|
+
- **`calendar`**: Organize calendar events (e.g., create events).
|
|
56
57
|
|
|
57
58
|
For detailed information on specific tools and their functionalities, refer to the [Tools Documentation](./docs/tools/README.md).
|
|
58
59
|
|