@mcp-z/mcp-outlook 1.1.1 → 1.1.2
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 +5 -10
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# @mcp-z/mcp-outlook
|
|
2
2
|
|
|
3
|
-
Docs: https://mcp-z.github.io/mcp-outlook
|
|
4
|
-
Outlook MCP server for searching, reading, and sending Microsoft 365 mail.
|
|
3
|
+
Docs: https://mcp-z.github.io/mcp-outlook Outlook MCP server for searching, reading, and sending Microsoft 365 mail.
|
|
5
4
|
|
|
6
5
|
## Common uses
|
|
7
6
|
|
|
@@ -106,8 +105,7 @@ Example (http) - Create .mcp.json:
|
|
|
106
105
|
}
|
|
107
106
|
```
|
|
108
107
|
|
|
109
|
-
Local (default): omit REDIRECT_URI → ephemeral loopback.
|
|
110
|
-
Cloud: set REDIRECT_URI to your public /oauth/callback and expose the service publicly.
|
|
108
|
+
Local (default): omit REDIRECT_URI → ephemeral loopback. Cloud: set REDIRECT_URI to your public /oauth/callback and expose the service publicly.
|
|
111
109
|
|
|
112
110
|
Note: start block is a helper in "npx @mcp-z/cli up" for starting an http server from your .mpc.json. See [@mcp-z/cli](https://github.com/mcp-z/cli) for details.
|
|
113
111
|
|
|
@@ -132,8 +130,7 @@ Useful for headless or remote environments.
|
|
|
132
130
|
|
|
133
131
|
### DCR (self-hosted)
|
|
134
132
|
|
|
135
|
-
HTTP only. Requires a public base URL.
|
|
136
|
-
CSV export and `/files` are disabled in DCR mode; `resourceStoreUri` is ignored.
|
|
133
|
+
HTTP only. Requires a public base URL. CSV export and `/files` are disabled in DCR mode; `resourceStoreUri` is ignored.
|
|
137
134
|
|
|
138
135
|
```json
|
|
139
136
|
{
|
|
@@ -196,13 +193,11 @@ See `server.json` for all supported environment variables, CLI arguments, and de
|
|
|
196
193
|
|
|
197
194
|
## Storage backends
|
|
198
195
|
|
|
199
|
-
OAuth tokens (`TOKEN_STORE_URI`) and DCR registrations (`DCR_STORE_URI`) are stored through
|
|
200
|
-
[keyv-registry](https://www.npmjs.com/package/keyv-registry), which picks an adapter from the URI protocol.
|
|
196
|
+
OAuth tokens (`TOKEN_STORE_URI`) and DCR registrations (`DCR_STORE_URI`) are stored through [keyv-registry](https://www.npmjs.com/package/keyv-registry), which picks an adapter from the URI protocol.
|
|
201
197
|
|
|
202
198
|
`file://` (the default, under `~/.mcp-z/`) and `memory://` work with no extra setup.
|
|
203
199
|
|
|
204
|
-
Any other backend needs its adapter installed alongside this server. Adapters are resolved with
|
|
205
|
-
`require()`, so a globally installed server finds a globally installed adapter:
|
|
200
|
+
Any other backend needs its adapter installed alongside this server. Adapters are resolved with `require()`, so a globally installed server finds a globally installed adapter:
|
|
206
201
|
|
|
207
202
|
```bash
|
|
208
203
|
npm install -g @mcp-z/mcp-outlook @keyv/redis
|