@mcp-z/mcp-gmail 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-gmail
|
|
2
2
|
|
|
3
|
-
Docs: https://mcp-z.github.io/mcp-gmail
|
|
4
|
-
Gmail MCP server for searching, reading, and sending mail over MCP.
|
|
3
|
+
Docs: https://mcp-z.github.io/mcp-gmail Gmail MCP server for searching, reading, and sending mail over MCP.
|
|
5
4
|
|
|
6
5
|
## Common uses
|
|
7
6
|
|
|
@@ -104,8 +103,7 @@ Example (http) - Create .mcp.json:
|
|
|
104
103
|
}
|
|
105
104
|
```
|
|
106
105
|
|
|
107
|
-
Local (default): omit REDIRECT_URI → ephemeral loopback.
|
|
108
|
-
Cloud: set REDIRECT_URI to your public /oauth/callback and expose the service publicly.
|
|
106
|
+
Local (default): omit REDIRECT_URI → ephemeral loopback. Cloud: set REDIRECT_URI to your public /oauth/callback and expose the service publicly.
|
|
109
107
|
|
|
110
108
|
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.
|
|
111
109
|
|
|
@@ -136,8 +134,7 @@ Example:
|
|
|
136
134
|
|
|
137
135
|
### DCR (self-hosted)
|
|
138
136
|
|
|
139
|
-
HTTP only. Requires a public base URL.
|
|
140
|
-
CSV export and `/files` are disabled in DCR mode; `resourceStoreUri` is ignored.
|
|
137
|
+
HTTP only. Requires a public base URL. CSV export and `/files` are disabled in DCR mode; `resourceStoreUri` is ignored.
|
|
141
138
|
|
|
142
139
|
```json
|
|
143
140
|
{
|
|
@@ -199,13 +196,11 @@ See `server.json` for all supported environment variables, CLI arguments, and de
|
|
|
199
196
|
|
|
200
197
|
## Storage backends
|
|
201
198
|
|
|
202
|
-
OAuth tokens (`TOKEN_STORE_URI`) and DCR registrations (`DCR_STORE_URI`) are stored through
|
|
203
|
-
[keyv-registry](https://www.npmjs.com/package/keyv-registry), which picks an adapter from the URI protocol.
|
|
199
|
+
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.
|
|
204
200
|
|
|
205
201
|
`file://` (the default, under `~/.mcp-z/`) and `memory://` work with no extra setup.
|
|
206
202
|
|
|
207
|
-
Any other backend needs its adapter installed alongside this server. Adapters are resolved with
|
|
208
|
-
`require()`, so a globally installed server finds a globally installed adapter:
|
|
203
|
+
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:
|
|
209
204
|
|
|
210
205
|
```bash
|
|
211
206
|
npm install -g @mcp-z/mcp-gmail @keyv/redis
|
package/package.json
CHANGED