@mcp-z/mcp-sheets 1.2.1 → 1.2.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 +4 -8
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -1,7 +1,6 @@
|
|
|
1
1
|
# @mcp-z/mcp-sheets
|
|
2
2
|
|
|
3
|
-
Docs: https://mcp-z.github.io/mcp-sheets
|
|
4
|
-
Google Sheets MCP server for reading, writing, and formatting spreadsheets.
|
|
3
|
+
Docs: https://mcp-z.github.io/mcp-sheets Google Sheets MCP server for reading, writing, and formatting spreadsheets.
|
|
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
|
|
|
@@ -212,13 +210,11 @@ See `server.json` for all supported environment variables, CLI arguments, and de
|
|
|
212
210
|
|
|
213
211
|
## Storage backends
|
|
214
212
|
|
|
215
|
-
OAuth tokens (`TOKEN_STORE_URI`) and DCR registrations (`DCR_STORE_URI`) are stored through
|
|
216
|
-
[keyv-registry](https://www.npmjs.com/package/keyv-registry), which picks an adapter from the URI protocol.
|
|
213
|
+
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.
|
|
217
214
|
|
|
218
215
|
`file://` (the default, under `~/.mcp-z/`) and `memory://` work with no extra setup.
|
|
219
216
|
|
|
220
|
-
Any other backend needs its adapter installed alongside this server. Adapters are resolved with
|
|
221
|
-
`require()`, so a globally installed server finds a globally installed adapter:
|
|
217
|
+
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:
|
|
222
218
|
|
|
223
219
|
```bash
|
|
224
220
|
npm install -g @mcp-z/mcp-sheets @keyv/redis
|
package/package.json
CHANGED