@frustrated/ms-graph-mcp 0.1.5 → 0.1.7

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 +7 -6
  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.
@@ -44,15 +45,15 @@ This will:
44
45
  Once initialized, Manus agents will typically run the MCP server to interact with Microsoft Graph. The server listens for JSON requests on `stdin` and outputs JSON responses to `stdout`.
45
46
 
46
47
  ```bash
47
- bunx --bun github:usually-frustrated/ms-graph-mcp run
48
+ bunx --bun @frustrated/ms-graph-mcp run
48
49
  ```
49
50
 
50
51
  ### Top-Level Tools
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
 
@@ -61,7 +62,7 @@ For detailed information on specific tools and their functionalities, refer to t
61
62
  To view the currently configured Client ID, Tenant ID, and enabled/disabled tools:
62
63
 
63
64
  ```bash
64
- bunx --bun github:usually-frustrated/ms-graph-mcp permissions
65
+ bunx --bun @frustrated/ms-graph-mcp permissions
65
66
  ```
66
67
 
67
68
  ### Revoking Access
@@ -69,7 +70,7 @@ bunx --bun github:usually-frustrated/ms-graph-mcp permissions
69
70
  To revoke authentication and clear all stored tokens:
70
71
 
71
72
  ```bash
72
- bunx --bun github:usually-frustrated/ms-graph-mcp revoke
73
+ bunx --bun @frustrated/ms-graph-mcp revoke
73
74
  ```
74
75
 
75
76
  ## Documentation
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.7",
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",