@softeria/ms-365-mcp-server 0.9.2 → 0.9.3
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 +2 -9
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
|
|
5
5
|
Microsoft 365 MCP Server
|
|
6
6
|
|
|
7
|
-
A Model Context Protocol (MCP) server for interacting with Microsoft 365 services through the Graph API.
|
|
7
|
+
A Model Context Protocol (MCP) server for interacting with Microsoft 365 and Office services through the Graph API.
|
|
8
8
|
|
|
9
9
|
## Prerequisites
|
|
10
10
|
|
|
@@ -98,14 +98,7 @@ This mode:
|
|
|
98
98
|
- Validates tokens with Microsoft Graph API
|
|
99
99
|
- **Disables** login/logout tools by default (use `--enable-auth-tools` to enable them)
|
|
100
100
|
|
|
101
|
-
MCP clients will automatically handle the OAuth flow when they see the advertised capabilities.
|
|
102
|
-
|
|
103
|
-
```bash
|
|
104
|
-
curl -X POST http://localhost:3000/mcp \
|
|
105
|
-
-H "Authorization: Bearer YOUR_MICROSOFT_ACCESS_TOKEN" \
|
|
106
|
-
-H "Content-Type: application/json" \
|
|
107
|
-
-d '{"jsonrpc": "2.0", "method": "initialize", "params": {"protocolVersion": "1.0.0", "capabilities": {}}, "id": 1}'
|
|
108
|
-
```
|
|
101
|
+
MCP clients will automatically handle the OAuth flow when they see the advertised capabilities.
|
|
109
102
|
|
|
110
103
|
> **Note**: HTTP mode requires authentication. For unauthenticated testing, use stdio mode with device code flow.
|
|
111
104
|
>
|