@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.
Files changed (2) hide show
  1. package/README.md +4 -3
  2. 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 github:usually-frustrated/ms-graph-mcp init
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
- * **`mail`**: Manage email communications (e.g., list messages).
55
- * **`calendar`**: Organize calendar events (e.g., create events).
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
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frustrated/ms-graph-mcp",
3
- "version": "0.1.5",
3
+ "version": "0.1.6",
4
4
  "description": "A JSR-based TypeScript MCP package for personal Microsoft Graph access via CLI",
5
5
  "type": "module",
6
6
  "main": "./src/index.ts",