This commit is contained in:
Taylor Wilsdon
2026-02-01 10:44:34 -05:00
parent eca3444777
commit 9e5832053c
4 changed files with 18 additions and 5 deletions

View File

@@ -542,7 +542,15 @@ uv run main.py --single-user --tools gmail
```bash
# Requests only read-only scopes & disables write tools
uv run main.py --read-only
# Combine with specific tools or tiers
uv run main.py --tools gmail drive --read-only
uv run main.py --tool-tier core --read-only
```
Read-only mode provides secure, restricted access by:
- Requesting only `*.readonly` OAuth scopes (e.g., `gmail.readonly`, `drive.readonly`)
- Automatically filtering out tools that require write permissions at startup
- Allowing read operations: list, get, search, and export across all services
**★ Tool Tiers**
```bash