gdrive-sa
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| GDRIVE_SA_KEY | Yes | Path to the service account JSON key file |
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| searchB | Search Google Drive files shared with the service account. Uses Drive query syntax (e.g. "name contains 'workshop'"). |
| listA | List all files/folders visible to the service account (shared with it). Optionally pass a folderId to list that folder's contents. |
| downloadA | Download a file by its Drive fileId. Returns text content for text files, or base64 for binary. Provide savePath to write it to disk instead. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
search and list both return Google Drive file listings, but search uses Drive query syntax while list browses all files or a specific folder. download is clearly distinct, so boundaries are mostly clear despite the one mild overlap.
All tool names are single lowercase verbs (search, list, download), giving a consistent imperative style with no mixed conventions.
Three tools fit a focused read-only service-account integration and avoid bloat. The count sits at the minimum and has slight overlap between search and list, but remains reasonable.
The set covers file discovery and retrieval for files shared with the service account. It lacks metadata-only access, export handling for Google Workspace files, and any write/management operations, leaving notable gaps for broader Drive use.