@frustrated/ms-graph-mcp 0.1.6 → 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 +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -45,7 +45,7 @@ This will:
45
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`.
46
46
 
47
47
  ```bash
48
- bunx --bun github:usually-frustrated/ms-graph-mcp run
48
+ bunx --bun @frustrated/ms-graph-mcp run
49
49
  ```
50
50
 
51
51
  ### Top-Level Tools
@@ -62,7 +62,7 @@ For detailed information on specific tools and their functionalities, refer to t
62
62
  To view the currently configured Client ID, Tenant ID, and enabled/disabled tools:
63
63
 
64
64
  ```bash
65
- bunx --bun github:usually-frustrated/ms-graph-mcp permissions
65
+ bunx --bun @frustrated/ms-graph-mcp permissions
66
66
  ```
67
67
 
68
68
  ### Revoking Access
@@ -70,7 +70,7 @@ bunx --bun github:usually-frustrated/ms-graph-mcp permissions
70
70
  To revoke authentication and clear all stored tokens:
71
71
 
72
72
  ```bash
73
- bunx --bun github:usually-frustrated/ms-graph-mcp revoke
73
+ bunx --bun @frustrated/ms-graph-mcp revoke
74
74
  ```
75
75
 
76
76
  ## Documentation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@frustrated/ms-graph-mcp",
3
- "version": "0.1.6",
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",